每日总结 2.22

今天学习了Android studio的基础xml文件的语句编写,
<?xml version="1.0" encoding="utf-8"?>
<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"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/hello">
    </TextView>

</LinearLayout>

  主要是学习了文本的书写和字体的设置还有button的操作。

 

posted @ 2023-02-22 21:01  一个小虎牙  阅读(11)  评论(0编辑  收藏  举报