这是我的布局代码。并截图它的外观
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="top"
android:background="@android:color/white">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#fac14b">
<TextView
android:id="@+id/BackAction_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:textColor="#33AAFF"
android:textSize="16dp"
android:textStyle="normal"
android:gravity="center"
android:drawableLeft="@drawable/back_arrow"/>
<TextView
android:id="@+id/ActiveFrameCaption_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="#000000"
android:textSize="18dp"
android:textStyle="normal"/>
</RelativeLayout>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_activity_frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
正如你所看到的,我有一个顶部面板,在RelativeLayout上放置了2个TextView。
现在,当右侧TextView太大时,它会显示在TextView左侧。所以我的问题是:如果TextView太大,是否可以自动减少TextView的宽度?