Android布局管理器-使用LinearLayout实现简单的登录窗口布局
生活随笔
收集整理的這篇文章主要介紹了
Android布局管理器-使用LinearLayout实现简单的登录窗口布局
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
場景
Android布局管理器-從實例入手學習相對布局管理器的使用:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103838924
線性布局LinearLayout,分為水平和垂直線性布局。
實現效果如下
?
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公眾號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。
實現
將activity修改為LinearLayout布局
?
并且通過???
android:orientation="vertical"設置其為豎直線型布局。
然后添加兩個輸入框分別為用戶名和密碼
通過
android:hint="請輸入賬戶"設置輸入框提示文本
通過
android:drawableLeft="@drawable/account"設置輸入框左邊的圖片
這里的圖片是放在res下的drawable目錄下
?
然后添加一個按鈕,設置其顏色。
完整示例代碼
<?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=".LinearLayoutActivity"><EditTextandroid:layout_width="match_parent"android:layout_height="wrap_content"android:paddingBottom="20dp"android:hint="請輸入賬戶"android:drawableLeft="@drawable/account"/><EditTextandroid:layout_width="match_parent"android:layout_height="wrap_content"android:paddingBottom="20dp"android:hint="請輸入密碼"android:drawableLeft="@drawable/pass"/><Buttonandroid:layout_width="match_parent"android:layout_height="wrap_content"android:text="登錄"android:textColor="#FFFFFF"android:background="#FF009688"/></LinearLayout>?
總結
以上是生活随笔為你收集整理的Android布局管理器-使用LinearLayout实现简单的登录窗口布局的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android布局管理器-从实例入手学习
- 下一篇: Android布局管理器-使用Frame