我有以下 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:padding="2.0dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:textSize="14.0sp"
android:textStyle="bold"
android:textColor="#ff449def"
android:layout_gravity="top|left|center"
android:id="@id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_gravity="left"
android:id="@id/eventvenue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/name" />
<TextView
android:layout_gravity="bottom|left|center"
android:id="@id/datetime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/eventvenue" />
<TextView
android:layout_gravity="left"
android:id="@+id/datetime2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/datetime" />
<ImageView
android:layout_gravity="right"
android:id="@id/customlistrowlogo"
android:padding="5.0dip"
android:layout_width="80.0dip"
android:layout_height="80.0dip"
android:scaleType="fitXY"
android:cropToPadding="true"
android:layout_alignTop="@id/name"
android:layout_alignBottom="@id/datetime2"
android:layout_alignParentRight="true"
android:contentDescription="logo" />
</RelativeLayout>
当应用程序处于垂直模式时,如果其中一个文本视图中的文本太长,那么它将换行到下一行而不覆盖图像。
但是,当我处于水平模式时,文本不会换行到下一行,而是被图像覆盖。
垂直的 ::
----------------------------
| image |
|text text text tex image |
|t wraps around tex image |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
----------------------------
水平的::
---------------------------------------------------------------
| |
| text image |
| text text text text text text text text text teimage |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------------------------
与垂直模式不同,文本在水平模式下下降到下一行,文本隐藏在图片后面并且不会转到下一行