2014-03-02 49 views
2

我遇到了我的xml佈局問題。 我想讓我的佈局使用xml的「simplemessage」將堅持頂部和「textchange」將填充和居中在屏幕中間,而「hiraganaconfbutton」將堅持在底部,我試圖引力和居中,但由於某種原因,它不工作LinearLayout重力

預先感謝您的幫助

這是我的XML佈局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:gravity="center_horizontal" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/simplemessage" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/guess" 
     android:textSize="19sp" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center_horizontal" 
     android:orientation="horizontal" > 

     <TextView 
      android:id="@+id/textchange" 
      android:layout_width="wrap_content" 
      android:layout_height="392dp" 
      android:text="@string/a" 
      android:textSize="60sp" /> 

    </LinearLayout> 

    <Button 
     android:id="@+id/hiraganaconfbutton" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/confirm" /> 

</LinearLayout> 
+0

能不能在相對佈局? – deadfish

回答

3

能不能這樣呢?

<?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" 
       android:gravity="center_horizontal" 
       android:orientation="vertical" > 

    <TextView 
      android:id="@+id/simplemessage" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/guess" 
      android:gravity="center" 
      android:textSize="19sp" 
      android:layout_alignParentTop="true"/> 

    <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/simplemessage" 
      android:layout_above="@+id/hiraganaconfbutton" 
      android:orientation="horizontal" > 

     <TextView 
       android:id="@+id/textchange" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:gravity="center" 
       android:text="@string/a" 
       android:textSize="60sp" /> 

    </LinearLayout> 

    <Button 
      android:id="@+id/hiraganaconfbutton" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:gravity="center" 
      android:text="@string/confirm" /> 

</RelativeLayout> 

preview

+0

謝謝你,這很好,工作! – Taziz

0

使用相對佈局如下:

<?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/simplemessage" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/guess" 
      android:gravity="center" 
      android:textSize="19sp" 
      android:layout_alignParentTop="true"/> 

    <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/simplemessage" 
      android:layout_above="@+id/hiraganaconfbutton" 
      android:orientation="horizontal" > 

     <TextView 
       android:id="@+id/textchange" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:gravity="center" 
       android:text="@string/a" 
       android:textSize="40sp" /> 

    </LinearLayout> 

    <Button 
      android:id="@+id/hiraganaconfbutton" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:gravity="center" 
      android:text="@string/confirm" /> 

</RelativeLayout>