我试图在操作栏中放置一个按钮而不是左侧的应用程序图标。我尝试过orderInCategory,但它没有帮助。 这样做的正确方法是什么?
答案 0 :(得分:1)
如果您只想更改Action Bar
“主页”部分的图标,可以以编程方式使用ActionBar.setIcon()
,或在XML中设置android:icon
。如果您想要做一些比这更复杂的事情(有多个按钮,或者能够进一步自定义它们),您需要在操作栏中设置自定义视图。
要在操作栏中设置自定义视图,您需要执行以下操作:
为自定义视图创建布局:
<LinearLayout
android:width="wrap_content"
android:height="match_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/button1"
android:width="wrap_content"
android:height="wrap_content"
android:src="@drawable/button1" />
</LinearLayout>
然后对其进行充气并将其设置为操作栏的自定义视图:
LayoutInflater inflater = LayoutInflater.from(context);
View customView = inflater.inflate(R.layout.custom_view, null);
ImageView button = (ImageView) customView.findViewById(R.id.button1);
button.setOnClickListener(...);
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setCustomView(customView);
希望有所帮助