выравнивание макета Android - PullRequest
1 голос
/ 11 октября 2011

Я приложил содержимое XML-файла.То, что я хочу сделать, это поместить TextView в центр строки и выровнять кнопку справа.Я перепробовал несколько решений, но все еще не нашел правильного.Есть предложения?

<?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">
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="*">
        <TextView
            android:id="@+id/serviceTitle"
            android:textSize="20px"
            android:textStyle="bold"
            android:gravity="center_horizontal"/>
        <Button 
            android:layout_gravity="center_horizontal"
            android:id="@+id/testButton"
            android:background="@drawable/go_button">
        </Button>
    </TableRow>
    <ListView 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:id="@android:id/list">
     </ListView>
     <TextView android:id="@android:id/empty"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="Empty set"/>
</LinearLayout>

1 Ответ

3 голосов
/ 11 октября 2011

Это то, что вы хотите?

    <RelativeLayout android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <TextView android:layout_width="wrap_content"
    android:layout_height="wrap_content"
        android:id="@+id/serviceTitle"
        android:textSize="20px"
        android:textStyle="bold"
        android:text="text view"
        android:layout_centerHorizontal="true"/>
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/testButton"
        android:text="Button"
        android:layout_alignParentRight="true">
    </Button>
    </RelativeLayout>
<ListView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" 
    android:id="@android:id/list">
 </ListView>
 <TextView android:id="@android:id/empty"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="Empty set"/>

...