如何在图形视图的XML布局中查看所有小部件/如何在eclipse中滚动图形布局?

时间:2014-07-03 11:09:17

标签: android eclipse android-layout android-emulator

我有一个XML布局,其中包含许多textView和editTexts,一个在另一个之下,10个textViews和10个editTexts。这会自动在手机和模拟器中创建滚动视图。然而,在ADT的图形布局中,只有4个可见。我无法在eclipse图形布局中查看剩余的内容。我必须连接到模拟器才能查看设计/对齐是否符合预期。

有没有什么方法可以使用eclipse的图形布局功能查看所有textViews和editTexts直到最后一个?

1 个答案:

答案 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>

这对我有用。