如何在android xml文件中添加滚动条???
任何人都可以通过简单的方式将其添加到相对布局中.
我多次尝试将其添加到相对和线性布局中.
但是,它不起作用.
请给我解决方案.
谢谢.
解决方法:
参考上面的答案:
如何使用相对的布局W.R.T.滚动型
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
... ... ...
</RelativeLayout>
</ScrollView>