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

时间:2014-04-27 18:30:27

标签: android xml

您好我在我的xml中一直收到此错误:“错误:找不到包''android'中属性'textAlignment'的资源标识符”

我试过googleing错误,但没有运气继承我的xml代码:

 <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#FFe5e5e5"
        android:orientation="vertical" >

    <!--     <EditText -->
    <!--         android:id="@+id/txtItem" -->
    <!--         android:layout_width="fill_parent" -->
    <!--         android:layout_height="wrap_content" -->
    <!--         android:inputType="text" > -->

    <!--         <requestFocus /> -->
    <!--     </EditText> -->

    <!--     <Button -->
    <!--         android:id="@+id/btnAdd" -->
    <!--         android:layout_width="fill_parent" -->
    <!--         android:layout_height="wrap_content" -->
    <!--         android:text="@string/add" /> -->

Error is flagging here: <TextView
            android:id="@+id/txtCurrentListName"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/reminder_bg"
            android:text="default"
            android:textColor="#FFffffff"
            android:textAlignment="gravity"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginTop="8dp"
            android:gravity="center"
            android:textSize="28sp"
             />

        <ListView
            android:id="@+id/listCurrentListItems"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        </ListView>

    </LinearLayout>

任何帮助都会很棒

提前谢谢

此致

克里斯

1 个答案:

答案 0 :(得分:5)

android:textAlignment was added in API Level 17。确保您的构建目标(例如,项目&gt;属性&gt; Android中的Android)设置为17或更高。