カスタム ビューを使用して ABS のタイトルを中央に配置することはできましたが、ホーム ボタンがなくなりました。これはどのように解決できますか?このホームボタンをカスタムビューに配置する唯一の方法はありますか? (明確にするために、ホームボタンは中央ではなく左側にある必要があります)
カスタム ビュー:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@android:color/transparent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello"/>
</LinearLayout>
活動コード:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.widget_actionbar_title);
getSupportActionBar().setHomeButtonEnabled(true);