gpt4 book ai didi

android - 错误 : No resource identifier found for attribute 'textAlignment' in package 'android'

转载 作者:IT王子 更新时间:2023-10-28 23:28:26 25 4
gpt4 key购买 nike

这是我的 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>

最佳答案

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

您的模拟器/设备需要运行 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" />

关于android - 错误 : No resource identifier found for attribute 'textAlignment' in package 'android' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20175969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com