我不能拖放任何东西到Android中的布局图形界面

时间:2013-07-27 20:50:31

标签: android drag-and-drop

我正在使用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>

1 个答案:

答案 0 :(得分:0)

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