gpt4 book ai didi

java - 操作栏按钮位置

转载 作者:行者123 更新时间:2023-11-30 02:43:18 25 4
gpt4 key购买 nike

我试图在操作栏中放置一个按钮而不是左侧的应用程序图标。我试过 orderInCategory 但它没有帮助。正确的做法是什么?

最佳答案

如果您只想更改 Action Bar 的“home”部分的图标,您可以以编程方式使用 ActionBar.setIcon(),或设置 android:icon 在您的 XML 中。如果您想做比这更复杂的事情(有多个按钮,或者能够进一步自定义它们),您需要在操作栏中设置自定义 View 。

要在操作栏中设置自定义 View ,您需要执行以下操作:

为您的自定义 View 创建布局:

<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>

然后对其进行膨胀并将其设置为您的操作栏的自定义 View :

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);

希望对你有帮助

关于java - 操作栏按钮位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25461048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com