iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 25
0
IoT

IoT 大亂鬥系列 第 25

RelativeLayout - 1

  • 分享至 

  • xImage
  •  

今天要做的是某些固定尺寸,而某些根據別人固定。
先獻上我的code

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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"
    tools:context=".MainActivity">
    
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
        <Button
            android:id="@+id/serch"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="搜索小夥伴"
            />
    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@id/serch"
        />
</RelativeLayout>
</RelativeLayout>

那我今天設計要畫出來的是一個搜索功能旁邊有一個按鈕,那搜索列是根據按鈕大小而定的。
那誰先決定,固定的是誰,就先寫誰。所以我先寫了一個沿著右手邊搜索小夥伴的Button,那android:id="@+id/serch"是用來給下面EditText的,幫他命個名的概念。
那EditText就是一個可以輸入的地方,那命令他沿這按鈕的左邊開始畫出來。
那執行後就是下面的畫面。
https://ithelp.ithome.com.tw/upload/images/20201009/20129280rVakY6ZI98.jpg


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

尚未有邦友留言

立即登入留言