2011-12-20 10 views
0

私は不動産より多くの情報を持っていたので、私のXMLコードをスクロールビューに入れました。そして、私の送信ボタンは上記のeditText2に載っています。ボタンはedittext2セクションの下に設定されていますが、明らかにそこにはありません。提出ボタンが正しく整列していない

おかげ

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/scroller" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" > 

<RelativeLayout 
    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_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:text="@string/sleeping_tracking" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <DatePicker 
     android:id="@+id/datePicker1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_below="@+id/textView1" 
     android:layout_marginTop="16dp" /> 

    <TextView 
     android:id="@+id/textView2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignTop="@+id/datePicker1" 
     android:layout_marginTop="50dp" 
     android:text="@string/start_date" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TimePicker 
     android:id="@+id/timePicker1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/datePicker1" 
     android:layout_below="@+id/datePicker1" /> 

    <TextView 
     android:id="@+id/textView3" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignTop="@+id/timePicker1" 
     android:layout_marginTop="48dp" 
     android:text="@string/start_time" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <DatePicker 
     android:id="@+id/datePicker2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_below="@+id/timePicker1" /> 

    <TimePicker 
     android:id="@+id/timePicker2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/datePicker2" 
     android:layout_below="@+id/datePicker2" /> 

    <TextView 
     android:id="@+id/textView4" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignTop="@+id/datePicker2" 
     android:layout_marginTop="49dp" 
     android:text="@string/end_date" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <RadioGroup 
     android:id="@+id/radioGroup1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/timePicker2" 
     android:layout_below="@+id/timePicker2" > 

     <RadioButton 
      android:id="@+id/radio0" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:checked="true" 
      android:text="@string/nap" /> 

     <RadioButton 
      android:id="@+id/radio1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="@string/nights_sleep" /> 
    </RadioGroup> 

    <TextView 
     android:id="@+id/textView6" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBottom="@+id/radioGroup1" 
     android:layout_alignParentLeft="true" 
     android:layout_marginBottom="33dp" 
     android:text="@string/sleep" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/textView5" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignTop="@+id/timePicker2" 
     android:layout_marginTop="49dp" 
     android:text="@string/end_time" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <TextView 
     android:id="@+id/textView7" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_below="@+id/textView6" 
     android:layout_marginTop="30dp" 
     android:text="@string/wakeups" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

    <EditText 
     android:id="@+id/editText1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBottom="@+id/textView7" 
     android:layout_alignLeft="@+id/radioGroup1" 
     android:layout_alignRight="@+id/textView1" 
     android:inputType="number" > 

     <requestFocus /> 
    </EditText> 

    <TextView 
     android:id="@+id/textView8" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_below="@+id/textView7" 
     android:layout_marginTop="32dp" 
     android:text="@string/comment" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 



    <EditText 
     android:id="@+id/editText2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBaseline="@+id/textView8" 
     android:layout_alignBottom="@+id/textView8" 
     android:layout_alignLeft="@+id/editText1" 
     android:layout_alignParentRight="true" 
     android:inputType="textMultiLine" /> 


    <Button 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/editText2" 
     android:layout_centerHorizontal="true" 
     android:text="@string/Add" /> 

</RelativeLayout> 
</ScrollView> 
+0

1スナップ= 1000ワードなので、問題のスナップも投稿する必要があります。 –

+0

https://plus.google.com/u/0/photos/103678987436785516340/albums/5614926899584644577/5688087579156325330?hl=ja – Intelwalk

+0

403禁止: –

答えて

0

私は

android:layout_marginTop="20dp" 

を追加し、それが下がるが、それはのEditText

0

Mr. Intelwalk の上に表示された理由を私は、XMLレイアウトのコードをテストして見つけることができませんでしたあなたはその正常な罰金を掲示しました。ボタンはedittext2の下にのみ表示されました。あなたはedittxt2の上にいかがでしたか?あなたが興味があればここにスナップショットを投稿してください。

私の出力では、ボタンはedittext2の次の行にあり、完全にタッチしてedittext2の下にあることを意味します。ギャップが必要な場合は、マージンを使用する必要があります。

私はあなたを助けてくれることを願っています。

+0

https://plus.google.com/u/0/photos/ 103678987436785516340/albums/5614926899584644577/5688087579156325330?hl = en – Intelwalk

関連する問題