Android Studio 中 TextView 控件学习
以下图片都来自于B站视频,仅留作学习记录,方便复习
视频链接
代码练习
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:id="@+id/tv_one"
android:text="@string/tv_one"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="20sp"
android:background="@color/red"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="200dp">
</TextView>
</LinearLayout>
代码练习
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:id="@+id/tv_one"
android:text="@string/tv_one"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="20sp"
android:shadowColor="@color/red"
android:shadowRadius="3.0"
android:shadowDx="10.0"
android:shadowDy="10.0"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="200dp">
</TextView>
</LinearLayout>
代码练习