iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 22
0
IoT

IoT 大亂鬥系列 第 22

LinearLayout - 2

  • 分享至 

  • xImage
  •  

先附上昨天的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的是一樣的。


上一篇
LinearLayout - 1
下一篇
LinearLayout - 3
系列文
IoT 大亂鬥29
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言