楼主所说的布局视图,应该就是xml文件的layout布局视图吧。
首先要知道,eclipse的xml视图与代码不是在同一页面的,这点android studio会方便一点,因为AS是在同一页面,方便观察;
如果要在eclipse上看,可以参考下面的图:
如下是个例子:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:layout_marginTop="30dp"
android:layout_marginBottom="70dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textSize="24sp" />
你需要加入例子中类似这样的两句:
android:layout_width="match_parent"
android:layout_height="match_parent"