4

我有一个带有 TextView 的活动。我想将它对齐在屏幕底部的中心,我希望 TextView 适合屏幕的宽度。

这是我的 XML:

<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"
    android:background="#ffffff"
    tools:context=".ShowCard" >
    <TextView
        android:id="@+id/textView"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#33000000"
        android:textColor="#000000"
        android:text="@string/lorem_ipsum" />

结果不是我期望看到的。TextView 在宽度上不是全屏的,而是在左右留下一个小的可用空间(比如填充/边框,但我没有设置填充/边框!)。

你知道为什么吗?建议?

4

5 回答 5

4

尝试这个

<?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" >    
      <TextView
        android:id="@+id/textView"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#33000000"
        android:textColor="#000000"
        android:text="@string/lorem_ipsum" />

    </RelativeLayout>
于 2013-10-04T12:21:34.573 回答
3

对不起,我是个笨蛋!我没有看到容器 XML 代码中包含四个填充行:

android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"

我已经删除了这些行,现在一切正常!

对不起。

于 2013-10-04T12:28:46.437 回答
0
<TextView
android:id="@+id/textView"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="#33000000"
android:textColor="#000000"
android:text="@string/lorem_ipsum" />

使用 'fill_parent' 属性,它应该填满屏幕的整个宽度。

于 2013-10-04T12:25:20.297 回答
0

消除

android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"

从父相对布局。

于 2013-10-04T12:36:11.410 回答
0
<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:background="#ffffff"
    tools:context=".ShowCard" >
    <TextView
        android:id="@+id/textView"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#33000000"
        android:textColor="#000000"
        android:text="@string/lorem_ipsum" />

用这个

于 2013-10-04T12:39:37.423 回答