2012-09-27 130 views
1

因此,我正在創建一個Android應用程序通過串行與arduino進行通信。它進行得很順利,但我在佈局方面遇到了一些問題。我的TextView在頂部和底部重疊,我不知道爲什麼!TextView重疊在頂部和底部

https://www.dropbox.com/s/jaz8vbx63kd25ix/Screenshot_2012-09-27-18-53-24.png

這裏是我的main.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_marginBottom="20dp" > 

    <TextView 
     android:id="@+id/demoTitle" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello" /> 

    <ScrollView 
     android:id="@+id/demoScroller" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 

     <TextView 
      android:id="@+id/demoText" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:typeface="monospace" /> 

    </ScrollView> 

    <RelativeLayout 
     android:id="@+id/send" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom" 
     > 

    <EditText 
     android:id="@+id/editText1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_toLeftOf="@+id/sendButton" 

     android:ems="10" 
     android:hint="@string/send_text" 
     android:inputType="text" 
     android:singleLine="true" > 
    </EditText> 

    <Button 
     android:id="@+id/sendButton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentTop="true" 
     android:text="Button" /> 

    </RelativeLayout> 

</FrameLayout> 

在此先感謝。

回答

1

很可能是因爲您使用的是FrameLayout,其中「應該被用來保存單個子視圖,因爲它可以是難以組織的方式,就是擴展到不同的屏幕尺寸沒有把孩子重疊每個孩子的意見其他「。嘗試使用垂直方向的LinearLayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginBottom="20dp" 
    android:orientation="vertical" > 

    <TextView 
    android:id="@+id/demoTitle" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello" /> 

    <!-- ... --> 

    </RelativeLayout> 

</LinearLayout> 
+0

謝謝,我有這樣的面前,它確實解決了重疊,但現在的文本框和按鈕向下移動與文本,而不是停留在底部,當它到達底部,指示燈熄滅屏幕。 任何想法? – lkrasner

+0

也許'ScrollView'的高度和你一起玩耍。嘗試設置'android:layout_height =「0px」'和'android:layout_weight =「1」'。 (這將使其佔用剩餘的空間,它不被'TextView'或'RelativeLayout'佔據。) – Eric

+0

謝謝!這工作完美。 – lkrasner

相關問題