你好
我测试水平scrollview我来到一个奇怪的问题,我把一个按钮在水平scrollview与布局高度和宽度fill_parent,但该标签没有效果的布局,让我看看我的布局
我测试水平scrollview我来到一个奇怪的问题,我把一个按钮在水平scrollview与布局高度和宽度fill_parent,但该标签没有效果的布局,让我看看我的布局
<HorizontalScrollView android:layout_width="wrap_content" android:layout_height="fill_parent" android:fillViewport="true" > <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" > <Button android:text="Button" android:id="@+id/button1" android:layout_width="fill_parent" android:layout_height="fill_parent"> </Button> </LinearLayout> </HorizontalScrollView>
我如何用水平scrollview中的按钮填充布局
@H_404_7@