2011-10-19 10 views
0

私はEclipseでグラフィカルなレイアウトとレイアウトを作成し、アンドロイド:レイアウトのEclipse&エミュレータで異なる

私は、Eclipseで見る何

this is how I see it in Eclipse

の.xml:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" android:weightSum="1"> 
    <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent"> 
     <AutoCompleteTextView android:layout_height="wrap_content" android:id="@+id/autoCompleteTextView1" android:layout_width="fill_parent" android:layout_below="@+id/textView1" android:layout_alignParentLeft="true" android:text="@string/emptyString"></AutoCompleteTextView> 
     <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView1" android:layout_width="wrap_content" android:text="@string/toString" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></TextView> 
     <LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:layout_below="@+id/autoCompleteTextView1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_width="fill_parent"> 
      <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonContacts" android:text="@string/contactsString" android:textSize="17sp" android:layout_width="fill_parent"></Button> 
      <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonGroups" android:text="@string/groupsString" android:textSize="17sp" android:layout_width="fill_parent"></Button> 
      <Button android:text="@string/favouritesString" android:layout_height="wrap_content" android:id="@+id/buttonFavourites" android:layout_weight="0.33333333" android:textSize="17sp" android:layout_width="fill_parent"></Button> 
     </LinearLayout> 
     <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView3" android:layout_width="fill_parent" android:text="@string/repetition" android:layout_below="@+id/editText1" android:layout_alignParentLeft="true"></TextView> 
     <Spinner android:layout_width="fill_parent" android:id="@+id/spinner" android:layout_height="wrap_content" android:prompt="@string/repetition" android:layout_below="@+id/textView3" android:layout_alignParentLeft="true"></Spinner> 
     <LinearLayout android:layout_width="wrap_content" android:id="@+id/linearLayout2" android:layout_height="wrap_content" android:layout_alignTop="@+id/button1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_alignParentBottom="true"> 
      <Button android:layout_height="wrap_content" android:id="@+id/button2" android:textSize="17sp" android:layout_width="fill_parent" android:layout_weight="0.50" android:text="@string/button_ok"></Button> 
      <Button android:layout_height="wrap_content" android:id="@+id/button1" android:textSize="17sp" android:layout_weight="0.5" android:layout_width="fill_parent" android:text="@string/button_cancel"></Button> 
     </LinearLayout> 
     <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView2" android:layout_width="fill_parent" android:text="@string/messageString" android:layout_below="@+id/linearLayout1" android:layout_alignParentLeft="true"></TextView> 
     <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_time" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton1" android:layout_below="@+id/spinner" android:layout_toRightOf="@+id/textView1"></ImageButton> 
     <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_date" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton2" android:layout_alignTop="@+id/imageButton1" android:layout_alignParentRight="true" android:layout_marginRight="60dp"></ImageButton> 
     <EditText android:id="@+id/editText1" android:layout_below="@+id/textView2" android:layout_alignParentLeft="true" android:layout_width="fill_parent" android:gravity="top|left" android:layout_height="110dp"> 
      <requestFocus></requestFocus> 
     </EditText> 

    </RelativeLayout> 

</LinearLayout> 

これは、アプリの起動時にエミュレータで表示される方法です。

this is how I see it in the emulator when the app starts

これは私がリスト

this is how I see it in the emulator after I change what I choose in the list

にここに何が間違っている任意のアイデアを選択内容を変更した後、私はエミュレータでそれを見る方法ですか?

答えて

0

idを参照するときにそこに "+"があってはいけません。 これは悪いです:

android:layout_below="@+id/editText1" 

これは良いです:

android:layout_below="@id/editText1" 

使用 "@ + ID/..." 唯一の要素定義に。

+0

ちょうどレイアウトを作成し、idを編集するチャンスを得ていない。 しかし、私はそれが問題だとは思わない... – Belgi

+0

ADTは最も安定したツールではありません。通常は、自分でxmlを編集する必要があります。 –

関連する問題