0

我正在尝试将文本居中在我的TextViewandButton中。我目前有以下代码:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"        
        android:orientation="vertical"
        android:background="#000000" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_weight="0.15"
            android:layout_height="0dp"
            android:gravity="center"
            android:text="@string/CouponFinder"
            android:textSize="30sp"
            android:textColor="#FF0000"
            android:typeface="monospace" />

        <ImageView
            android:id="@+id/couponImage"
            android:layout_width="match_parent"
            android:layout_weight="0.7"
            android:layout_height="0dp"
            android:src="@drawable/coupon" />

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_weight="0.15"
            android:layout_height="0dp"
            android:text="@string/continueButton"
            android:textSize="30sp" 
            android:gravity="center"/>

    </LinearLayout>

</RelativeLayout>

但是,ButtonandTextView中的文本在右侧,因此某些文本不在屏幕上......我也收到以下警告LinearLayout

This LinearLayout layout or its RelativeLayout parent is possibly useless

任何帮助将不胜感激!!

4

7 回答 7

4

尝试这个

[<TextView
                android:id="@+id/textView1"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_gravity="center"
                android:layout_weight="0.15"
                android:gravity="center"
                android:hint="asdasasdasdd"
                android:text="adasdasdasd"
                android:textAlignment="gravity"
                android:textColor="#FFffff"
                android:textSize="30sp"
                android:typeface="monospace" />]

在此处输入图像描述

于 2013-10-21T07:14:55.117 回答
1

尝试这个,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

tools:context=".MainActivity" >

      <ImageView
            android:id="@+id/couponImage"
            android:layout_width="wrap_content"
            android:layout_weight="0.7"
            android:layout_height="wrap_content"
            android:src="@drawable/coupon" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:gravity="center"
        android:text="continueButton"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:gravity="center_horizontal"
        android:text="CouponFinder"
        android:textColor="#FF0000"
        android:textSize="30sp"
        android:typeface="monospace" />

</RelativeLayout>
于 2013-10-21T07:14:40.820 回答
0

警告是因为你只使用一个LinearLayout作为子视图。RelativeLayout所以删除你的RelativeLayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"        
    android:orientation="vertical"
    android:background="#000000" >

     <TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_weight="0.15"
    android:layout_height="0dp"
    android:gravity="center"
    android:text="@string/CouponFinder"
    android:textSize="30sp"
    android:textColor="#FF0000"
    android:typeface="monospace" />

    <ImageView
        android:id="@+id/couponImage"
        android:layout_width="match_parent"
        android:layout_weight="0.7"
        android:layout_height="0dp"
        android:text="@string/CouponFinder" />

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_weight="0.15"
        android:layout_height="0dp"
         android:text="@string/continueButton"
        android:textSize="30sp" 
        android:gravity="center"/>

</LinearLayout>

试试上面的数据。我是通过上面的数据得到的

在此处输入图像描述

于 2013-10-21T07:06:51.703 回答
0

您所做的是正确的,但是要查看更改,您只需要重新启动 IDE。我在这里找到了答案。

于 2014-09-09T12:31:54.397 回答
0
  1. 您应该制作RelativeLayoutaLinearLayout并摆脱内部LinearLayout,除非您打算在 . 内部RelativeLayout和外部进行修改并添加更多内容LinearLayout

  2. 尝试layout-gravity在项目上设置 ,而不是gravity

希望这可以帮助 :)

于 2013-10-21T07:05:18.487 回答
0

试试这个方法:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.15"
    android:gravity="center"
    android:text="CouponFinder"
    android:textColor="#FF0000"
    android:textSize="30sp"
    android:typeface="monospace" />

<ImageView
    android:id="@+id/couponImage"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.7"
    android:src="@drawable/icon" />

<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.15"
    android:gravity="center"
    android:text="continueButton"
    android:textSize="30sp" />

  </LinearLayout>
于 2013-10-21T07:08:44.300 回答
0

尝试这个..

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
        android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
        android:background="#000000" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_weight="0.15"
            android:layout_height="0dp"
            android:gravity="center"
            android:text="CouponFinder"
            android:textSize="30sp"
            android:textColor="#FF0000"
            android:typeface="monospace" />

        <ImageView
            android:id="@+id/couponImage"
            android:layout_width="match_parent"
            android:layout_weight="0.7"
            android:layout_height="0dp"
            android:src="@drawable/icon" />

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_weight="0.15"
            android:layout_height="0dp"
            android:text="continueButton"
            android:textSize="30sp" 
            android:gravity="center"/>

    </LinearLayout>
于 2013-10-21T07:09:58.447 回答