我在操作栏中有一个关于自定义样式导航的快速问题。
我已使用此代码创建自定义标题布局:
ActionBar ab = getActionBar();
ab.setDisplayShowTitleEnabled(false);
ab.setDisplayShowCustomEnabled(true);
View customTitle = getLayoutInflater().inflate(R.layout.custom_title, null);
ab.setCustomView(customTitle);
看起来像这样:
但是当我点击向上导航按钮时,只有图标和指示器突出显示......如下所示:
我正在寻找一种方法来获得整个标题可点击,但使用自定义布局。这可能吗?
这里是我的操作栏布局XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:gravity="center_vertical"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Ferries"
android:textSize="20sp"
android:textColor="#FFF"
android:id="@+id/actionbar_title_depart" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text=""
android:textSize="10sp"
android:textColor="#FFF"
android:id="@+id/actionbar_title_arrive" />
</LinearLayout>
感谢您一看,我期待听到一些建议!