我已经搜索了很多如何将ActionBarSherlock定位到屏幕底部并感谢上帝使用此代码工作
<activity
android:name=".MyActivity"
android:uiOptions="splitActionBarWhenNarrow" >
</activity>
但有一个小问题,标题仍然存在,我也想删除它,所以任何人都可以帮我删除ActionBarSherlock的标题
先谢谢
答案 0 :(得分:2)
splitActionBarWhenNarrow意味着它将被拆分,不会移动到任何地方,只有在狭窄时才会移动。因此,如果您处于纵向或宽屏幕,菜单选项将始终显示在顶部。您无法强制在底部绘制ActionBar。相反,你可能想要完全禁用ActionBar并使用带有actionButtonStyle的ImageButtons将自己的自定义视图放在底部
<style name="NoActionBar" parent="@android:style/Theme.Holo.Light">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/buttons_holder"
android:ellipsize="end"
style="@style/TextAppearance.Sherlock.Widget.ActionBar.Title"/>
<LinearLayout
android:id="@+id/buttons_holder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentRight="true" >
<ImageButton
android:id="@+id/acion_add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_label_add"
style="?attr/actionButtonStyle" />
<ImageButton
android:id="@+id/action_prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_label_prev"
style="?attr/actionButtonStyle" />
<ImageButton
android:id="@+id/action_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/menu_label_next"
style="?attr/actionButtonStyle" />
</LinearLayout>
</RelativeLayout>