模拟器和布局显示文本视图的不同颜色

时间:2016-04-19 12:00:24

标签: android performance android-layout android-studio android-emulator

Design View中的所有内容都运行得非常好,但是当我在模拟器中运行我的项目时,它会在black中向我显示Text Text View的{​​{1}}颜色。

我在Text中为Text view尝试了各种颜色,但它在模拟器中没有变化。

在以下示例中,我在white中为Text指定了TextView颜色,在设计视图中显示white颜色,但在模拟器中显示black颜色

 <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="120dp"
        android:layout_above="@+id/horizontalScrollView"
        android:id="@+id/linearLayout">


        <RelativeLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"

            >

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/btnVideos"
                android:background="@drawable/mavesgear"
                />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/tv_teamHighlights"
                    android:text="TEAM HIGHLIGHTS"
                    android:textSize="30px"
                   android:background="#1557a0"
                    android:textColor="#ffffff"
                    />

            </FrameLayout>

        </RelativeLayout>

我在不同的模拟器上尝试了这个,但结果是一样的。 请指导我在这里做错了什么。

0 个答案:

没有答案