好的,那就是我试图显示文字,但它不会让我。代码是:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textAlignment="center"
android:textColor="#000000"
android:textColorLink="@android:color/black"
android:textStyle="normal" />
我做错了什么? (文字不会出现在屏幕上)
答案 0 :(得分:1)
app_name
可能为空或为空。TextView
显示在屏幕上,请查看您的布局文件。TextView
的值已修改为代码中的空/空值。答案 1 :(得分:0)
试试这个
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="Flights"
android:textColor="@android:color/white" />
答案 2 :(得分:0)
您的代码是正确的,因为它对我有用。您可能犯的错误是您的String资源变量“app_name”为空,或者您可以提供完整的xml代码,以便我们更好地了解此问题。