首页 > 其他分享 >今日总结2023/02/28

今日总结2023/02/28

时间:2023-02-28 22:33:22浏览次数:40  
标签:02 layout 28 height content width 2023 wrap android

今日进行了记事本用户登录界面的绘制

主要是在activity_main.xml中进行了布局的嵌套,组件的搭配和页面设计。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="40dp"
android:gravity="center_vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="账号:"
android:textSize="25sp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="请输入用户名或手机号"
android:textSize="18sp"
android:layout_marginLeft="10dp"
android:paddingLeft="5dp"
android:inputType="text"
android:background="@drawable/edit_text"
/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="40dp"
android:gravity="center_vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="密码:"
android:textSize="25sp"
/>

<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="请输入密码"
android:textSize="18sp"
android:layout_marginLeft="10dp"
android:paddingLeft="5dp"
android:inputType="numberPassword"
android:background="@drawable/edit_text"
/>

</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
android:layout_marginTop="20dp"
>

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住密码"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
/>

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动登录"
android:layout_marginLeft="40dp"
/>
</LinearLayout>


<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="登录"
android:textSize="25sp"
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textColor="@color/white"
android:background="@drawable/btn_bg_selector"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:text="还没有账号?"
android:layout_gravity="right"
android:layout_marginRight="20dp"
android:layout_marginTop="10dp"
/>
</LinearLayout>

还创建了两个dra,wble的selector文件,这里不再进行过多介绍,成品如下:

 

标签:02,layout,28,height,content,width,2023,wrap,android
From: https://www.cnblogs.com/zbw-m/p/17166319.html

相关文章

  • 2-28
    #include<stdio.h>voidmain(){ /* charnum[10];//第四 charmi[10]; scanf("%s",num); scanf("%s",mi); printf("%s\t",num); printf("%s\n",mi); */ //charnu......
  • 2023.2.28周二每日总结
    今天下午的课上学习了python的一些基础,知道了python中存储数据的方法,即每个数据存在一个独特的地址不需要提前申请变量,包裹一些列表的乘法是怎么分配的,并且进一步学习了ja......
  • 2023.2.28——软件工程日报
    所花时间(包括上课):8.5h代码量(行):0行博客量(篇):1篇今天,上午学习了英语和数据库,下午学习python和数学建模。我了解到的知识点:晚上研究了一会数学建模,时间有点长,博客发布的晚......
  • HU4056锂电池充电IC耐高压28V,带OVP,带NTC
    产品概述HU4056H是一款完整的采用恒定电流/恒定电压的高压、大电流、单节锂离子电池线性充电IC。最高耐压可达28V,6.5V自动过压保护,充电电流可达1A。由于采用了内部PMOS......
  • 初学C语言2/28
    今天写一些笔记,关于进制转换的ING......
  • 每日总结 2.28
    今天学习python的基础语法数据类型的学习,学习了数组的计算和地址查找。课后回到宿舍学习了java编写app的逻辑代码。packagecom.example.xx.frg_recod;importandroi......
  • 2/28每日总结
    今天上学习了数据库原理和英语准备四级,但下午发烧严重就请了半天假,晚上退烧之后学习了Android的布局的代码:<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmln......
  • 2.28每日总结——安卓
       今天,简单了解了一下线性布局,还学习了一下昨天上课的内容(最长英语链接龙),简单的实现了几个单词的写入与输出。还没法实现《飘》的接龙。安卓这块还没怎么学,接下来......
  • 每日2023/2/28
               <?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutandroid:layout_width="match_parent"android:layout_height="match......
  • 2023.2.28Android开发
    今天早上学习了数据库原理,下午学习了Python程序设计Android开发的设置视图的对齐方式设置视图的对齐方式有两种途径:采用layout_gravity属性,它指定了当前视图相对于上级视......