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 回答
0

您应该将两者都用于 textview

android:layout_centerVertical="true"

android:layout_centerHorizontical="true"

或者

您可以使用

android:layout_centerInParent="true"
于 2013-07-23T11:29:30.380 回答