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>
我在不同的模拟器上尝试了这个,但结果是一样的。 请指导我在这里做错了什么。