错误:在'android'包中找不到属性'textAlignment'的资源标识符

时间:2013-11-24 14:55:50

标签: android xml android-layout

这是我的res / layout mobile.xml文件。我的错误在哪里?当我运行textview时出现此错误。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dp" >
    <ImageView
    android:id="@+id/grid_item_image"
    android:layout_width="100dp"
    android:layout_height="118dp"
    android:src="@drawable/android_logo" >
    </ImageView>
    <TextView
    android:id="@+id/grid_item_label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"
    android:text="@+id/label"
    android:textSize="25dp"
    android:textAlignment="center" >
    </TextView>
    </LinearLayout>

2 个答案:

答案 0 :(得分:48)

在API级别17(Android 4.2)中添加了

textAlignment

您的模拟器/设备需要运行4.2+才能实现此功能。

否则只需使用android:gravity="center"

<TextView
    android:id="@+id/grid_item_label"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"
    android:text="@+id/label"
    android:textSize="25dp"
    android:gravity="center" />

答案 1 :(得分:0)

我认为这一行可能存在什么问题:

android:text="@+id/label"

试试这个:

android:text="@string/label"