eclipse上android没有显示布局视图

2024-11-18 22:23:01
推荐回答(2个)
回答1:

楼主所说的布局视图,应该就是xml文件的layout布局视图吧。

  1. 首先要知道,eclipse的xml视图与代码不是在同一页面的,这点android studio会方便一点,因为AS是在同一页面,方便观察;

  2. 如果要在eclipse上看,可以参考下面的图:

回答2:

如下是个例子:

android:id="@+id/dialog_message"
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"