先附上昨天的code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="penguinFrist"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Frist Friend"
/>
</LinearLayout>
首先是插入這句,在第六行的地方android:orientation="vertical"
這個段的意思是接下來的原件都會以這個方始所排列,那我是選擇了垂直的方式。
那接下來就先舉個例,新增一個Botton的按鈕,
寬度是match_parent,就是物件會和上層物件的大小一樣,
高度是wrap_content,就是有多會和下層物件的大小一樣,android:text="penguinFrist"
就是在裡面寫下企鵝,
那TextView就是一般的文字,至於寬高就跟Botton的是一樣的。