我对操作栏和标签导航有一些问题。实际上我想将我的标签设置在我的操作栏上方。(我使用了 Sherlock 动作条)。
我看到有些人有问题,因为当他们启用时:
ab.setDisplayShowTitleEnabled(false);
他们的 tabhost 的标签在他们的 ActionBar 上方,但这正是我想要的。这是我的代码:
ActionBar ab = getSupportActionBar();
//getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
ab.setCustomView(R.layout.action_wifisettings);
ab.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
ab.setDisplayShowTitleEnabled(false);
ab.setDisplayShowHomeEnabled(false);
ab.setDisplayUseLogoEnabled(false);
ab.setDisplayShowCustomEnabled(true);
以及与我的操作栏对应的 xml 文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:text="@string/wifi_title"
android:layout_marginLeft="10dp"
android:id="@+id/action_page_title"
android:layout_centerVertical="true"
android:textSize="16sp" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/action_page_title"
android:layout_marginLeft="40dp"
android:textColor="#FFFFFF"
android:layout_centerVertical="true"
android:text="@string/checkbox_title"
android:id="@+id/action_checkbox_wifi"
android:textSize="16sp" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_centerVertical="true"
android:contentDescription="@string/wifi_refresh_desc"
android:background="@drawable/ic_refresh_selector"
android:id="@+id/action_wifi_refresh"
android:textSize="12sp" />
</RelativeLayout>
如果您知道如何将我的操作栏设置在我的选项卡后面,那就太好了。谢谢。