在以下代码中,文本框上方的“user”和“pass”文本未显示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff">
<ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:src="@drawable/login" android:id="@+id/imageView1" android:layout_alignParentTop="true" android:layout_centerHorizontal="true"></ImageView>
<TextView android:textAppearance="?android:attr/textAppearanceMedium" android:id="@+id/textView1" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="User:" android:layout_below="@+id/imageView1" android:layout_alignLeft="@+id/editText1" android:layout_marginTop="16dp"></TextView>
<EditText android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/editText1" android:layout_below="@+id/textView1" android:layout_alignRight="@+id/imageView1" android:layout_alignLeft="@+id/imageView1"></EditText>
<TextView android:textAppearance="?android:attr/textAppearanceMedium" android:id="@+id/textView2" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="Pass:" android:layout_below="@+id/editText1" android:layout_alignLeft="@+id/editText2"></TextView>
<EditText android:inputType="textPassword" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/editText2" android:layout_below="@+id/textView2" android:layout_alignLeft="@+id/editText1" android:layout_alignRight="@+id/editText1"></EditText>
<Button android:text="Enter" android:id="@+id/button1" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_below="@+id/editText2" android:layout_alignLeft="@+id/editText2" android:layout_marginTop="19dp" android:layout_alignRight="@+id/editText2"></Button>
</RelativeLayout>
对不起,它有点大而且很长,但我已经搜索过这个问题并试图找到解决方案,但不能很好地应用它们。我究竟做错了什么?有人可以指导我如何解决这个问题吗?感谢
答案 0 :(得分:0)
我认为外部RelativeLayout的背景可能是白色(#ffffff),默认情况下(如果我错了,请纠正我)Android中的文本为白色,背景为黑色。试着弄乱themes。快速修复尝试在TextViews上设置android:textColor =“#000000”或类似的东西。