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

来源:互联网 发布:矩阵理论张绍飞 编辑:程序博客网 时间:2024/05/23 00:14

android:layout_alignParentRight=”true”

<?xml version="1.0" encoding="utf-8"?><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>
0 0