我将TextView添加到ScrollView中。
文本视图之间的空间应该是可扩展的。
我的意思是如果设备很小,那么如果设备更大,空间应该更小。
也许我应该看看ScrollView大小的蚂蚁比例TextView取决于它?
或者有一些方法可以做到这一点?我正在编程我的TextView。
感谢。
答案 0 :(得分:0)
您无法在scrollview中添加多个子视图。 Scrollview不支持多个孩子。请遵循:
http://developer.android.com/reference/android/widget/ScrollView.html
和
http://developer.android.com/resources/tutorials/views/index.html
答案 1 :(得分:0)
在创建您将在scrollview中使用的布局的所有内容时,您应该使用STYLES.XML。 如果您在样式中完成了布局的所有配置,则可以修改样式以适应不同的屏幕尺寸(每个屏幕尺寸一个styles.xml文件)。
您需要为您使用/需要的每个屏幕大小创建一个values文件夹,并将其放入带有个性化配置的styles.xml文件中:
values //default .In this case, it'll be used instead of the normal-size
values-small
values-large
values-xlarge
如果您需要更多屏幕尺寸,请检查https://stackoverflow.com/a/10426483/1140648
答案 2 :(得分:0)
Use this code in your manifest.xml file.
This will work
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />