我在我的 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>
在这里,我的按钮没有完全显示。谁能帮助我哪里出错了。
显示如下:
在标题栏中,您可以看到按钮 Text 未正确显示。