Android Horizo​​ntalScrollView宽度

use*_*577 2 xml layout android scrollview horizontalscrollview

这是我的XML 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>
Run Code Online (Sandbox Code Playgroud)

我想将RelativeLayout的宽度设置为等于Horizo​​ntalScrollView的宽度.如何使用XML(不是以编程方式)执行此操作

Mik*_*kel 9

您想要的所有内容都在Horizo​​ntalScrollView中

android:fillViewport="true"
Run Code Online (Sandbox Code Playgroud)