今天完成了对android的学习,用了一个半小时的时间。今天,我又重新系统地复习了之前的内容,并开始跟随编程写代码了,就是对之前已经学习过的内容进行动手实践,亲自写代码,找找错误,还有加深印象等。
<?xml version="1.0" encoding="utf-8"?>标签:content,layout,height,学习,width,进度,wrap,android From: https://www.cnblogs.com/liuxuefeng/p/17149222.html
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#ffff99"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第二个"
android:textSize="17sp"
android:textColor="#000000"/>
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/>
</LinearLayout>