每日总结 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的操作。