0

我正在使用 Eclipse。我无法将任何内容拖放到我的 xml 文件的图形界面中。
每当我拖动按钮或文本视图之类的东西时,它只会显示该位置虚线块并卡在那里。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

  <TextView
     android:id="@+id/textView1"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginLeft="32dp"
     android:layout_marginTop="88dp"
     android:text="text"
     android:textAppearance="?android:attr/textAppearanceMedium" />

  <TextView
     android:id="@+id/textView2"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginLeft="32dp"
     android:layout_marginTop="120dp"
     android:text="text"
     android:textAppearance="?android:attr/textAppearanceMedium" />

 <TextView
     android:id="@+id/textView3"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginLeft="32dp"
     android:layout_marginTop="160dp"
     android:text="Type your secret password"
     android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>
4

1 回答 1

0

我刚刚将您的代码复制并粘贴到RelativeLayout我刚刚在 Eclipse 上创建的文件中,它似乎工作正常。您是否尝试过调整按钮的高度和宽度TextViews或将背景图像添加到按钮以尝试更轻松地找到它们?有wrap_content可能是太小了。如果这是您第一次使用 Android 布局,我建议您LinearLayout改用。RelativeLayout即使对于更有经验的程序员来说,也可能很难相处。

于 2013-07-27T22:38:55.383 回答