[原样图片] http://sdrv.ms/1bx8Bxm [待成像] http://sdrv.ms/1aGADfo 我们希望将维护按钮从上下文移动到标题。我们尝试了很多方法。一些示例代码,但一旦我们添加到我们的代码中就会出错。任何人都可以帮助我们吗? 第一张图片就是我们现在的样子,第二张图片是我们想要达到的。 非常感谢你!!!
我们在xml中维护按钮的代码是这样的:
<Button
android:id="@+id/maintain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Maintain"
android:background="#F77D03" />
答案 0 :(得分:0)
将此代码放在资源的菜单文件夹中 的 main1.xml 强>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_maintain"
android:showAsAction="always"
android:title="Maintain"/>
</menu>
这在Activity
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
getMenuInflater().inflate(R.menu.main1, menu);// Menu Resource, Menu
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
switch(item.getItemId())
{
case R.id.action_maintain:
Toast.makeText(getApplicationContext(), "Item 1 Selected", Toast.LENGTH_LONG).show();
return true;
default:
return super.onOptionsItemSelected(item);
}
}