1. 程式人生 > >線性佈局控制控制元件居右顯示

線性佈局控制控制元件居右顯示

用到的屬性:
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>