相对布局控制控件居右显示

android:layout_alignParentRight=”true”


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
              android:layout_height="wrap_content">
    <TextView
        android:id="@+id/productname"

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="柜子" />
    <TextView
        android:id="@+id/productnum"
        android:layout_alignParentRight="true"
        android:layout_marginRight="10dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="3" />

RelativeLayout>

你可能感兴趣的:(Android)