0

私はエクリプスを使用しています。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 に答える