這是我的HorizontalScrollView
的Android HorizontalScrollView寬度
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="19" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/card_background" >
</RelativeLayout>
</LinearLayout>
</HorizontalScrollView>
我想設置的RelativeLayout的等於HorizontalScrollView的寬度寬XML。我怎樣才能做到這一點與XML(不是編程)
集的RelativeLayout父母的LinearLayout寬度match_parent ... –