我有一个XML布局,其中包含许多textView和editTexts,一个在另一个之下,10个textViews和10个editTexts。这会自动在手机和模拟器中创建滚动视图。然而,在ADT的图形布局中,只有4个可见。我无法在eclipse图形布局中查看剩余的内容。我必须连接到模拟器才能查看设计/对齐是否符合预期。
有没有什么方法可以使用eclipse的图形布局功能查看所有textViews和editTexts直到最后一个?
答案 0 :(得分:1)
我将整个孩子View
放在Scroll View
而不是线性布局或相对布局中。
喜欢这个
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color"
android:orientation="vertical" >
..........
..........
</LinearLayout>
</ScrollView>
这对我有用。