Android アプリのタイトル バーに次のレイアウトを定義しました。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id = "@+id/CustomTitleRelativeLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/titleTvCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="Center" />
<Button
android:id="@+id/clearcachebutton"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@string/clear_cache_button_text" />
</RelativeLayout>
ここでボタンが完全に表示されません。私が間違っている場所で誰かが私を助けることができますか?
表示は次のとおりです。
タイトル バー で、ボタン テキストが正しく表示されていないことがわかります。