2012-12-05 91 views
0

enter image description here我嘗試了許多次但沒有任何東西......我在屏幕頂端有一個圖像,一個editext和2個按鈕。填充edittext,該按鈕位於按鈕上方,用戶無法點擊「發送」或「取消」。我也嘗試使用「scrollview」,但我有同樣的問題。edittext高於按鈕

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:background="@drawable/inviabackground2" 
android:orientation="vertical" 
android:layout_weight="1" 
tools:context=".MainActivity" > 

<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:src="@drawable/logoinvia" /> 

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 

</LinearLayout> 

      <EditText 
       android:id="@+id/editText1" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:ems="10" > 

</EditText> 

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:gravity="bottom" 
    android:layout_weight="1" 
    android:orientation="horizontal" > 

     <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Invia per mail!" /> 

      <Button 
       android:id="@+id/button2" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_weight="1" 
       android:gravity="center_vertical|center_horizontal" 
       android:text="Annulla" /> 

</LinearLayout> 
</LinearLayout> 
+0

你能發佈截圖?我不知道你的意思 – Jameo

+0

爲什麼你有一個空的LinearLayout在那裏,就在EditText之前? – Stephan

+0

錯誤。糾正。 –

回答

1

這對我有用。它隨着用戶輸入而向下滾動。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:gravity="bottom" 
     android:orientation="vertical" > 

     <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="match_parent" 
      android:layout_height="300dp" 
      android:layout_alignParentTop="true" 
      android:src="@drawable/ic_launcher" /> 

     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/imageView1" 
      android:ems="10" > 
     </EditText> 

     <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_alignParentLeft="true" 
      android:text="Invia per mail!" /> 

     <Button 
      android:id="@+id/button2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_toRightOf="@id/button1" 
      android:layout_alignParentRight="true" 
      android:text="Annulla" /> 
    </RelativeLayout> 

</ScrollView> 
+0

由於我沒有'大'標誌,我模擬固定它的高度。除去你的情況。 – Stephan

+0

正確!酷男孩!按鈕總是在edittext下面並且圖像應該被修復(而不是scrool) –

+0

我很高興。如果它適合您,請將答案標記爲已接受。 – Stephan

0

這裏的佈局:

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    android:weightSum="1" xmlns:android="http://schemas.android.com/apk/res/android"> 


<ScrollView 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_weight="0.30" 
    > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:gravity="bottom" 
     android:orientation="vertical" > 

     <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="match_parent" 
      android:layout_height="300dp" 
      android:layout_alignParentTop="true" 
      android:src="@drawable/ic_launcher" /> 

     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/imageView1" 
      android:ems="10" > 
     </EditText> 


    </LinearLayout> 

</ScrollView> 

<LinearLayout 
    android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:layout_weight="0.70" 
      android:gravity="center" 
      android:weightSum="1"> 

    <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_alignParentLeft="true" 
      android:text=" mail!" 
      android:layout_weight="0.50"/> 

     <Button 
      android:id="@+id/button2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_toRightOf="@id/button1" 
      android:layout_alignParentRight="true" 
      android:text="xyz" 
      android:layout_weight="0.50"/> 

</LinearLayout> 

</LinearLayout> 
+0

絕對會幫你...... –

+0

謝謝。圖像處於滾動狀態。我需要修復圖像和按鈕。只有edittext需要移動。 –

0

這裏是你的解決方案:

![<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    android:weightSum="1" xmlns:android="http://schemas.android.com/apk/res/android"> 

    <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="match_parent" 
      android:layout_height="300dp" 
      android:layout_alignParentTop="true" 
      android:src="@drawable/ic_launcher" /> 


<ScrollView 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_weight="0.50" 
    > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:gravity="bottom" 
     android:orientation="vertical" > 



     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/imageView1" 
      android:ems="10" > 
     </EditText> 


    </LinearLayout> 

</ScrollView> 

<LinearLayout 
    android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:layout_weight="0.50" 
      android:gravity="center" 
      android:weightSum="1"> 

    <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_alignParentLeft="true" 
      android:text=" mail!" 
      android:layout_weight="0.50"/> 

     <Button 
      android:id="@+id/button2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/editText1" 
      android:layout_toRightOf="@id/button1" 
      android:layout_alignParentRight="true" 
      android:text="xyz" 
      android:layout_weight="0.50"/> 

</LinearLayout> 

</LinearLayout> 

enter image description here