相對佈局relativeLayout

来源:http://www.cnblogs.com/Renyi-Fan/archive/2017/08/03/7279026.html
-Advertisement-
Play Games

相對佈局relativeLayout 一、簡介 二、實例 代碼 /Test_FrameLayout/res/layout/relativelayout.xml ...


相對佈局relativeLayout

一、簡介

 

二、實例

代碼

/Test_FrameLayout/res/layout/relativelayout.xml

android:layout_centerHorizontal="true"
android:layout_toRightOf="@+id/qq_icon"
android:layout_marginTop="13dp"


 1 <?xml version="1.0" encoding="utf-8"?>
 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent" >
 5     
 6     <ImageView 
 7         android:id="@+id/qq_icon"
 8         android:layout_width="100dp"
 9         android:layout_height="100dp"
10         android:src="@drawable/QQ"
11         />
12     
13     <EditText 
14         android:id="@+id/et_accout"
15         android:layout_width="160dp"
16         android:layout_height="wrap_content"
17         android:text="請輸入賬號"
18         android:layout_toRightOf="@+id/qq_icon"
19         />
20     
21     <EditText 
22         android:id="@+id/et_password"
23         android:layout_width="160dp"
24         android:layout_height="wrap_content"
25         android:text="請輸入密碼"
26         android:layout_toRightOf="@+id/qq_icon"
27         android:layout_below="@+id/et_accout"
28         />
29     
30     <TextView 
31         android:id="@+id/tv_register"
32         android:layout_width="fill_parent"
33         android:layout_height="wrap_content"
34         android:text="註冊賬號"
35         android:layout_toRightOf="@+id/et_accout"
36         android:layout_marginTop="13dp"
37         />
38     
39     <TextView 
40         android:id="@+id/tv_findPassword"
41         android:layout_width="fill_parent"
42         android:layout_height="wrap_content"
43         android:text="找回密碼"
44         android:layout_toRightOf="@+id/et_accout"
45         android:layout_marginTop="48dp"
46         />
47     
48     <CheckBox
49         android:id="@+id/cb_rememberPassword"
50         android:layout_width="100dp"
51         android:layout_height="wrap_content"
52         android:layout_below="@id/et_password"
53         android:layout_toRightOf="@id/qq_icon"
54         android:text="記住密碼"
55         android:textSize="13sp"
56         ></CheckBox>
57     
58     <CheckBox
59         android:id="@+id/cb_autoLogin"
60         android:layout_width="100dp"
61         android:layout_height="wrap_content"
62         android:layout_below="@id/et_password"
63         android:layout_toRightOf="@id/cb_rememberPassword"
64         android:text="自動登錄"
65         android:textSize="13sp"
66         ></CheckBox>
67     
68     <Button
69         android:id="@+id/btn_login"
70         android:layout_width="170dp"
71         android:layout_height="wrap_content"
72         android:text="登錄"
73         android:layout_below="@id/cb_rememberPassword"
74         android:layout_centerHorizontal="true"
75         ></Button>
76 </RelativeLayout>

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我們開發軟體中應用各種模式,主要是為了 1. 職責劃分:一個類只做一件事 2. 易用,可維護,方便擴展 3. 解耦,相互獨立,可單獨測試 各種設計模式其實都是在解決上面的問題,讓我們對比看看吧。 一、如何理解MVC設計模式 在通常的定義中,MVC 是下圖的結構 但是在 cocoa 體系中,蘋果建議的 ...
  • TextView實現圖文混合編排 一、簡介 在這裡實現圖文混合編排使用的是:TextView中預定義的類似Html的標簽 二、方法 * 1、設置好html標簽的文本 String html="<font>圖片1</font><img src='image1'/>"; html+="<font>圖片2 ...
  • TextView兩種顯示link的方法 一、簡介 也是TextView顯示文本控制項兩種方法 也是顯示豐富的文本 二、方法 TextView兩種顯示link的方法 1)通過TextView裡面的類html標簽 * 1、設置好html標簽的文本 String text1="<font color='re ...
  • View繪製的三部曲,測量,佈局,繪畫現在我們分析佈局部分測量部分在上篇文章中已經分析過了。不瞭解的可以去我的博客里找一下View的佈局和測量一樣,都是從ViewRootImpl中發起,ViewRootImpl先通過measure來初始化整個的view樹之後會調用onLayout方法來佈局,View ...
  • 1.UIButton UIButton的類是一個UIControl子類,它實現了在觸摸屏上的按鈕。觸摸一個按鈕攔截事件和動作消息發送到目標對象時,它的挖掘。設定的目標和行動方法都繼承自UIControl。這個類提供了方法來設置標題,圖像,按鈕等外觀屬性。通過使用set方法,你可以指定一個不同的外觀為 ...
  • 想要掌握一樣東西,最好的方式就是閱讀理解它的源碼。想要掌握Android Binder,最好的方式就是寫一個AIDL文件,然後查看其生成的代碼。本文的思路也是來自於此。 ...
  • iOS開發中有時候需要拿到字元串的行數來實現特定的功能,下麵代碼用來實現根據字元串內容和字元串的顯示寬度(即label的長度)來計算行數 1.引入#import <CoreText/CoreText.h> 頭文件 2.項目開發需要實現在朋友圈內容右下角加展開按鈕,避免文字遮擋按鈕,就把區分好的字元串 ...
  • 使用Java代碼來創建view 一、簡介 需要瞭解的知識 二、方法 1)java代碼創建view方法 * 1、先建view對象 View view= View.inflate(this, R.layout.activity01, null); * 2、在view中填充R.layout.activit ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...