线性布局控制控件居右显示

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

用到的属性:
android:layout_width=”0dp”
android:layout_weight=”1”

<?xml version="1.0" encoding="utf-8"?><LinearLayout 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="0dp"        android:layout_height="wrap_content"        android:layout_weight="1"        android:text="柜子"/>    <TextView        android:id="@+id/productnum"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginRight="10dp"        android:text="3"/></LinearLayout>
0 0
原创粉丝点击