Android Textview无法在设备上显示

时间:2013-04-29 21:36:28

标签: android textview

我在我的Android应用中遇到一个问题,其中Textview没有在实际设备上显示(尝试使用3-4 Motorola,LG等)。

以下是代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#fff"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/loginoption_fb_relative_header"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="0dip"
        android:background="@drawable/topbar" >

        <TextView
            android:id="@+id/loginoption_fb_text_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dip"
            android:background="@drawable/back"
            android:gravity="center" />
    </RelativeLayout>

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/loginoption_fb_relative_header"
        android:layout_margin="10dp"
        android:background="@drawable/red_bg"
        android:gravity="center_horizontal"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/loginoption_fb_linear_parent"
            android:layout_width="fill_parent"
            android:layout_height="373dp"
            android:gravity="center_horizontal"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/loginoption_fb_text_referal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="0dp"
                android:layout_marginTop="25dp"
                android:text="@string/HAVEAREFERRAL"
                android:textSize="18dp" />

            <EditText
                android:id="@+id/loginoption_fb_edittext_refercode"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="0dp"
                android:layout_marginTop="25dp"
                android:background="@drawable/formfield"
                android:hint="@string/Refercodeoptional"
                android:padding="5dp"
                android:textSize="18dp" />

            <ImageView
                android:id="@+id/loginoption_fb_image_facebook"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="0dp"
                android:layout_marginRight="0dp"
                android:layout_marginTop="21dp"
                android:background="@drawable/fb_signup_btn"
                android:contentDescription="@string/imagecontent" />

            <TextView
                android:id="@+id/loginoption_fb_text_tapbutton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="0dp"
                android:layout_marginTop="15dp"
                android:text="@string/tapfbbutton"
                android:textColor="@color/white"
                android:textSize="12dp" />

        </LinearLayout>
    </ScrollView>

</RelativeLayout>

这是截图,红色圈出的文字(android:id =“@ + id / loginoption_fb_text_tapbutton”)没有显示。感谢。

enter image description here

0 个答案:

没有答案