基础复习——TextView——文本显示——字体颜色——背景颜色——字体大小——@color/teal_200——@string/hello
作者:互联网
文本显示
布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:id="@+id/tv_hello_001" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:padding="20dp" android:background="#ff0000" android:text="你好,世界" /> <TextView android:id="@+id/tv_hello_002" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:padding="20dp" android:background="#ffff99" android:textSize="50dp" android:textColor="@color/teal_200" android:text="@string/hello" /> </LinearLayout>
标签:200,颜色,color,teal,字体大小,文本 来源: https://www.cnblogs.com/xiaobaibailongma/p/16534906.html