正如您在图像中看到的那样,模拟器上的字体颜色是完全黑色的,但在预览窗口上,文本视图顶部有浅蓝色,底部文本有白色字体。我已经在两个真实的设备上测试了这个应用程序,我面临着相同的黑色字体问题。 我希望你们能帮助摆脱这个问题。 这是代码。
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="com.example.android.myfirstcard.MainActivity">
<ImageView
android:src="@drawable/ghat"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Oldest City Of The World."
android:textSize="36sp"
android:textColor="#03a9f4"
android:layout_margin="20dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Incredible Varanasi!"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:fontFamily="sans-serif-light"
android:textSize="36sp"
android:textColor="#ffffff"
android:layout_margin="20dp"/>
</RelativeLayout>
答案 0 :(得分:0)
您的xml布局没有任何问题,因为我已复制粘贴并在实际设备上运行它。我认为问题出在您的java类中。尝试检查你的java类,因为我认为你是以编程方式覆盖 TextView 颜色。
答案 1 :(得分:-1)
我自己想出问题实际上成功运行你需要在你的android工作室安装相同的Android版本sdk的应用程序,因为在我的情况下我有sdk for android marshmallow 6.0但我试图运行应用程序android Lollipop 5.1设备。