我尝试了很多组合,但我的“sectionTitle textview”总是在“sectionOptionsButton 按钮”旁边的左侧。我想在水平和垂直两个按钮之间居中。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/BackGroundColor"
android:orientation="vertical"
android:scaleType="center" >
<LinearLayout
android:id="@+id/mLlayout1"
android:layout_width="match_parent"
android:layout_height="35dp"
android:background="@color/BlueOcean"
android:orientation="horizontal" >
<Button
android:id="@+id/sectionOptionsButton"
android:layout_width="33dp"
android:layout_height="33dp"
android:layout_weight="0"
android:layout_gravity="left"
android:background="@drawable/adddatabase1"/>
<TextView
android:id="@+id/sectionTitle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_weight="1"
android:text="(blank)" />
<Button
android:id="@+id/addCatButton"
android:layout_width="33dp"
android:layout_height="33dp"
android:layout_weight="0"
android:layout_gravity="right"
android:background="@drawable/plusicon3"/>
</LinearLayout>
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#b5b5b5"
android:dividerHeight="1dp"
android:listSelector="@drawable/listview_style_list_selector" />
</LinearLayout>
怎么了?谢谢