我正在通过从数据库中获取的值创建一个图表。所以我的值每次都可以改变。它没有安装在屏幕上,它正在屏幕外。你能告诉我如何为此创建水平滚动视图。
问问题
531 次
1 回答
0
All these TextView and Buttons are under Single Horizontal Scroll View..try this way..
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Inside 1st HorizontalScrollView" />
<Button
android:text="Button A1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:text="Button A2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</HorizontalScrollView>
于 2012-06-22T10:50:48.003 回答