2

私のテキストビューは中央に配置されていません下は私のコードですこれは私のスクリーンショットです

画像

テキストビューを画面の中央に揃えたいだけです助けてください

<RelativeLayout 
    android:id="@+id/lytTitlebar"
    android:layout_width="fill_parent"
    android:layout_height="45dp"
      android:background="@drawable/border"
    android:layout_alignParentTop="true">
    <ImageButton 
        android:id="@+id/imgNavBack"
        android:layout_width="wrap_content"
        android:layout_height="45dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:src="@drawable/nav_back"

        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"/>
    <TextView 
        android:id="@+id/txtTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:textStyle="bold"
        android:textColor="@color/text"
        android:text="@string/category_list"


        android:layout_toRightOf="@+id/imgNavBack"

        android:layout_centerVertical="true"/>
    <ImageButton 
        android:id="@+id/imgRefresh"
        android:layout_width="wrap_content"
        android:layout_height="45dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:src="@drawable/refresh"

        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"/>
</RelativeLayout>
4

3 に答える 3

5

これを試して:

<TextView 
        android:id="@+id/txtTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:textStyle="bold"
        android:textColor="@color/text"
        android:text="@string/category_list"
        android:gravity="center"
        android:layout_toRightOf="@+id/imgNavBack"
        android:layout_toLeftOf="@+id/imgRefresh"
        android:layout_centerVertical="true"/>
于 2013-07-23T11:21:13.253 に答える
1

レイアウトをコピーしてアイコンに置き換えるだけで機能します。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff4444" >

    <Button
        android:id="@+id/header_toogel_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:background="@drawable/ic_launcher" />

    <Button
        android:id="@+id/header_search_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:background="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/sub_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="Your Text Will Be Here"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>
于 2013-07-23T11:23:10.563 に答える