2013-03-09 5 views
1

안녕하세요, 저는 "등록 양식"이라는 XML 파일을 가지고 있지만, 실행하면 텍스트보기의 모든 텍스트를 볼 수 없습니다. plz 도움말 중 일부는 가능합니다 ... . 내가 코드에서 마지막으로 한 것은 그 XML 파일의 테마 옵션에있는 옵션에서 온 것임을 기억하는 한 코드에 있다고 생각하지 않습니다.textview가 화면에 나타나지 않습니다.

불행히도 내가 어떻게 그 중 하나를 가져올 수 있는지 잊어 버렸습니다. 메모리 PLZ 여기

내 xml 파일 당신 black..if 이외의

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:background="#3b3b3b" 
tools:context=".RegisterActivity" > 

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:gravity="bottom" 
    android:orientation="vertical" > 

    <!-- View Title Label --> 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="4dip" 
     android:text="REGISTER" 
     android:textSize="25dip" 
     android:textStyle="bold" /> 

    <!-- Name Label --> 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="Full Name" /> 
    <!-- Name TextField --> 

    <EditText 
     android:id="@+id/registerName" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" /> 

    <!-- Email Label --> 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="Email" /> 
    <!-- Email TextField --> 

    <EditText 
     android:id="@+id/registerEmail" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" /> 

    <!-- Password Label --> 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="15dip" 
     android:text="Password" /> 
    <!-- Password TextField --> 

    <EditText 
     android:id="@+id/registerPassword" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:password="true" /> 

    <!-- Error message --> 

    <TextView 
     android:id="@+id/register_error" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:padding="10dip" 
     android:textColor="#e30000" 
     android:textStyle="bold" /> 

    <!-- Login Button --> 

    <Button 
     android:id="@+id/btnRegister" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="20dip" 
     android:text="Register" /> 

    <!-- Link to Login Screen --> 

    <Button 
     android:id="@+id/btnLinkToLoginScreen" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom" 
     android:layout_marginTop="40dip" 
     android:background="@null" 
     android:text="Already registred. Login Me!" 
     android:textColor="#21dbd4" 
     android:textStyle="bold" /> 
    </LinearLayout> 

    </ScrollView> 
+0

이됩니다. –

+0

holo.light 또는 holo.black 테마로 설정 –

+0

앱 테마 ........ –

답변

1

변화 당신의 텍스트 뷰의 색상 xml을 사용하여 textColor 속성을 설정하면 #FFFFFF.

+0

내가 말했듯이 내가 마지막으로했던 것처럼 내 코드와 아무 것도 아니지만 왜 그것이 다시 바뀌지 않았는가! – user1794499

+0

???? ... 당신이 명확하게 설명 할 수 있겠습니까? –

+0

나는 테마와 관련이 있다는 것을 의미합니다. – user1794499

관련 문제