RelativeLayout android:重力不能在api 16下使用?

时间:2016-01-27 12:00:31

标签: android relativelayout

我写信是为了显示视频的名称和标记。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="left"
        android:paddingBottom="7dp" >
        <TextView
            android:id="@+id/drama_mark"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:includeFontPadding="false"
            android:textColor="#ff9313"
            android:textSize="16dp"
            android:layout_marginLeft="8dp"
            android:text="8.8"/>
        <TextView
            android:id="@+id/drama_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:includeFontPadding="false"
            android:gravity="left|end"
            android:textColor="#ff323232"
            android:textSize="16dp"
            android:text="See you again"
            android:layout_toLeftOf="@id/drama_mark" />
    </RelativeLayout>

但它不能在android 16下面使用。为什么它显示在右边?视频,名称可能是两行或更多行。我已经尝试了很多次,请帮助我。 enter image description here

2 个答案:

答案 0 :(得分:0)

试试这个:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="left"
            android:paddingBottom="7dp" >
<TextView
    android:id="@+id/drama_mark"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:includeFontPadding="false"
    android:textColor="#ff9313"
    android:layout_alignParentRight="true"
    android:textSize="16dp"
    android:layout_marginLeft="8dp"
    android:text="8.8"/>
<TextView
    android:id="@+id/drama_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:includeFontPadding="false"
    android:gravity="left|start"
    android:textColor="#ff323232"
    android:layout_alignParentLeft="true"
    android:textSize="16dp"
    android:layout_toLeftOf="@+id/drama_mark"
    android:text="See you again gbfayufbafubsayfbas fysgafysaf fyasgfysuafas" />
</RelativeLayout>

答案 1 :(得分:0)

最后,我使用TableLayout来解决我的问题。

<TableLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_weight="1"
    android:paddingTop="@dimen/distance"
    android:paddingBottom="7dp"
    android:shrinkColumns="0">
    <TableRow>
        <TextView
            android:id="@+id/drama_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:includeFontPadding="false"
            android:textColor="#ff323232"
            android:text="see you again"
            android:textSize="16dp" />
        <TextView
            android:id="@+id/drama_mark"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:includeFontPadding="false"
            android:textColor="#ff9313"
            android:textSize="@dimen/big_text"
            android:layout_marginLeft="16dp"
            android:text="8.8" />
    </TableRow>
</TableLayout>