Android布局管理器-使用LinearLayout实现简单的登录窗口布局
程序员文章站
2024-01-29 14:00:28
场景 Android布局管理器-从实例入手学习相对布局管理器的使用: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103838924 线性布局LinearLayout,分为水平和垂直线性布局。 实现效果如下 注: 博客: htt ......
场景
android布局管理器-从实例入手学习相对布局管理器的使用:
https://blog.csdn.net/badao_liumang_qizhi/article/details/103838924
线性布局linearlayout,分为水平和垂直线性布局。
实现效果如下
注:
博客:
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
将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"> <edittext android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingbottom="20dp" android:hint="请输入账户" android:drawableleft="@drawable/account" /> <edittext android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingbottom="20dp" android:hint="请输入密码" android:drawableleft="@drawable/pass" /> <button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="登录" android:textcolor="#ffffff" android:background="#ff009688" /> </linearlayout>
上一篇: 2020年华为重点打造HMS生态:无需谷歌GMS 国内公司将受益
下一篇: 字典树小结