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"
    android:background="@drawable/background"
    android:orientation="vertical" >

    <View
        android:id="@+id/view1"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_weight="1" />

    <ImageView
        android:id="@+id/emblem"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:gravity="center"
        android:scaleType="fitStart"
        android:src="@drawable/apn_app_logo" />

    <Button
        android:id="@+id/go_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="54dp"
        android:background="@drawable/apn_app_go_button" />

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/go_button"
        android:layout_align="@+id/go_button"
        android:layout_alignParentRight="true"
        android:text="@string/start_text2"
        android:textColor="#000000"
        android:textSize="14sp" />

</RelativeLayout>
4

2 回答 2

1

只是稍微更改了您的代码,希望它对您有用

    <TextView android:id="@+id/text" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/go_button"
        android:layout_alignRight="@+id/go_button"
        android:layout_below="@+id/go_button" 
        android:textColor="#000000" 
        android:gravity="center"
        android:textSize="14sp" />
于 2013-08-29T19:34:56.787 回答
0

尝试添加重力以使文本居中:

        <TextView android:id="@+id/text" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/go_button"
            android:layout_alignRight="@+id/go_button"
            android:layout_below="@+id/go_button" 
            android:textColor="#000000" 
            android:gravity="center"
            android:textSize="14sp" />
于 2013-08-29T19:53:30.687 回答