我希望我的应用图标显示在操作栏的中心 - 根本不需要对操作栏进行其他更改。
我已经研究过更易于理解的解决方案,例如: ActionBar logo centered and Action items on sides
虽然这是可能的,但对于这样一个简单的用例来说似乎有些过分。有什么办法可以通过简单的造型来实现吗?我使用默认的Holo Light主题,基本API 11。
答案 0 :(得分:2)
为什么不在ActionBar的背景中设置图像(如操作栏背景的条带,图像为中心,最好是9个补丁)。
然后您可以将其指定为动作栏背景,例如
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
和
<!-- general styles for the action bar -->
<style name="MyActionBar" parent="@style/Widget.AppCompat.ActionBar">
<!-- Support library compatibility -->
<item name="android:background">@drawable/actionbar</item>// your nine patch image
<item name="android:icon">@android:color/transparent</item>
</style>
然后您也可以隐藏标题。这不是一个黑客,但考虑到你不想调动ActionBar这将工作。玩得开心:))
答案 1 :(得分:0)
您可以这样做:
ActionBar action = getActionBar();
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.action_menu, null);
action.setCustomView(view);
action_menu.xml文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10sp" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Left button" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="The logo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="Right button" />
</RelativeLayout>