我正在使用'AppCompact'库并遇到布局/定位方面的一些问题。我想将“应用程序”图标放在“ActionBar”的右侧。一种方法是在工具栏中定义一个按钮,但有一个标准方法来设置ActionBar右侧的App图标和向上按钮吗?
正如您在上图所示,图标位于左侧,我希望它位于右侧。任何帮助将不胜感激。
P.s:对于可能面临问题的人,可以使用此代码轻松修复 将此代码添加到清单:
<application android:supportsRtl="true">
然后在Oncreate上编写此代码:
getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
答案 0 :(得分:17)
Android无法在操作栏的右侧设置应用图标,但您仍然可以。
创建一个菜单,例如main_menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/menu_item"
android:icon="@drawable/your_app_icon"
android:title="@string/menu_item"
app:showAsAction="always"/> //set showAsAction always
//and this should be the only menu item with show as action always
</menu>
现在只需覆盖 onCreateOptionsMenu
您的活动类。
在MainActivity.java
@Override
public boolean onCreateOptionsMenu(Menu menu){
getMenuInflater().inflate(R.menu.main_menu, menu);
return super.onCreateOptionsMenu(menu);
}
已经完成了!您的应用程序图标现在将显示在ActionBar的右侧。
如果菜单中有多个项,则覆盖 onPrepareOptionsMenu
在活动类中,并为具有应用图标的菜单项设置setEnabled(false)
,这样做可以防止您的图标被点击。
@Override
public boolean onPrepareOptionsMenu(Menu menu){
menu.findItem(R.id.menu_item).setEnabled(false);
return super.onPrepareOptionsMenu(menu);
}
现在您的MainActivity.java
文件看起来像
@Override
public boolean onCreateOptionsMenu(Menu menu){
getMenuInflater().inflate(R.menu.main_menu, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item){
switch(item.getItemId()){
case R.id.menu_item: //this item has your app icon
return true;
case R.id.menu_item2: //other menu items if you have any
//add any action here
return true;
case ... //do for all other menu items
default: return super.onOptionsItemSelected(item);
}
}
@Override
public boolean onPrepareOptionsMenu(Menu menu){
menu.findItem(R.id.menu_item).setEnabled(false);
return super.onPrepareOptionsMenu(menu);
}
这是您可用于在右侧设置应用图标的唯一技巧。
答案 1 :(得分:1)
除了将布局设置为RTL或自己实现之外别无他法。即使您继承Toolbar
并尝试更改onLayout
,也需要重新计算所有视图的位置。
答案 2 :(得分:0)
我刚刚在声明 android:layout_marginStart="300dp"
的 xml 中添加了 imagebutton
。