首页 > 其他分享 >5.13博客

5.13博客

时间:2024-06-16 20:10:22浏览次数:9  
标签:安卓 日历 起床 博客 5.13 舒服

看看日历又是周一,本来都起床了感觉尸体有点不舒服,再躺会吧

学习内容:安卓

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="vertical"     android:padding="5dp">
    <LinearLayout         android:layout_width="match_parent"         android:layout_height="40dp"         android:orientation="horizontal">
        <TextView             android:id="@+id/tv_name"             android:layout_width="wrap_content"             android:layout_height="match_parent"             android:gravity="center"             android:text="姓名:"             android:textColor="@color/black"             android:textSize="17sp" />
        <EditText             android:id="@+id/et_name"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_marginTop="3dp"             android:layout_marginBottom="3dp"             android:layout_weight="1"             android:background="@drawable/editext_selector"             android:hint="请输入姓名"             android:inputType="text"             android:maxLength="12"             android:textColor="@color/black"             android:textSize="17sp" />     </LinearLayout>
    <LinearLayout         android:layout_width="match_parent"         android:layout_height="40dp"         android:orientation="horizontal">
        <TextView             android:id="@+id/tv_age"             android:layout_width="wrap_content"             android:layout_height="match_parent"             android:gravity="center"             android:text="年龄:"             android:textColor="@color/black"             android:textSize="17sp" />
        <EditText             android:id="@+id/et_age"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_marginTop="3dp"             android:layout_marginBottom="3dp"             android:layout_weight="1"             android:background="@drawable/editext_selector"             android:hint="请输入年龄"             android:inputType="number"             android:maxLength="2"             android:textColor="@color/black"             android:textSize="17sp" />     </LinearLayout>
    <LinearLayout         android:layout_width="match_parent"         android:layout_height="40dp"         android:orientation="horizontal">
        <TextView             android:id="@+id/tv_height"             android:layout_width="wrap_content"             android:layout_height="match_parent"             android:gravity="center"             android:text="身高:"             android:textColor="@color/black"             android:textSize="17sp" />
        <EditText             android:id="@+id/et_height"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_marginTop="3dp"             android:layout_marginBottom="3dp"             android:layout_weight="1"             android:background="@drawable/editext_selector"             android:hint="请输入身高"             android:inputType="number"             android:maxLength="3"             android:textColor="@color/black"             android:textSize="17sp" />     </LinearLayout>
    <LinearLayout         android:layout_width="match_parent"         android:layout_height="40dp"         android:orientation="horizontal">
        <TextView             android:id="@+id/tv_weight"             android:layout_width="wrap_content"             android:layout_height="match_parent"             android:gravity="center"             android:text="体重:"             android:textColor="@color/black"             android:textSize="17sp" />
        <EditText             android:id="@+id/et_weight"             android:layout_width="0dp"             android:layout_height="match_parent"             android:layout_marginTop="3dp"             android:layout_marginBottom="3dp"             android:layout_weight="1"             android:background="@drawable/editext_selector"             android:hint="请输入体重"             android:inputType="numberDecimal"             android:maxLength="5"             android:textColor="@color/black"             android:textSize="17sp" />     </LinearLayout>
    <CheckBox         android:id="@+id/ck_married"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:checked="false"         android:gravity="center"         android:text="已婚"         android:textColor="@color/black"         android:textSize="17sp" />
    <Button         android:id="@+id/btn_save"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:text="添加"         android:textColor="@color/black"         android:textSize="17sp" />
    <Button         android:id="@+id/btn_delete"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:text="删除"         android:textColor="@color/black"         android:textSize="17sp" />
    <Button         android:id="@+id/btn_update"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:text="修改"         android:textColor="@color/black"         android:textSize="17sp" />
    <Button         android:id="@+id/btn_query"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:text="查询"         android:textColor="@color/black"         android:textSize="17sp" />
</LinearLayout>

标签:安卓,日历,起床,博客,5.13,舒服
From: https://www.cnblogs.com/zjm921/p/18251161

相关文章

  • 5.17博客
    排球课比赛快完了,目前为止一场没输过,我感觉这跟我课脱不了关系学习内容:spring-boot注册条件安卓:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/ll_item"  an......
  • 5.6博客
    过完五一假了该进入学习状态了学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="m......
  • 4.30博客
    上午计网下午建民课晚上跑步真是充实学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical&qu......
  • 2024年6月16日 18:10,cnblog博客园的第一天!!!
    终于A了P06614迷宫游戏5,原来是动态规划......点击查看代码#include<bits/stdc++.h>#definedebug(a);cout<<#a<<"="<<a<<endl;#definerep(i,a,b)for(inti=a;i<=b;i++)#definepep(i,a,b)for(inti=a;i>=b;i--)usingnamespacestd;......
  • css样式综合案例----博客园首页简单搭建
    1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<title>博客园</title>6<metaname="viewport"content="width=device-width,initial-scal......
  • 博客园入门
    一、语言:通常博客都是采用markdown语言。1.1markdown语言教程1:https://markdown.com.cn/basic-syntax/教程2:https://forum-zh.obsidian.md/t/topic/435/教程3:https://markdown.com.cn/intro.html1.2Html语言(1)markdown提供了可无缝转换为HTML的轻量级语法。对于......
  • 博客园商业化之路-众包平台:继续召集早期合作开发者
    会员、周边、广告是园子现在维持生存的主要收入来源,而众包平台是园子未来实现商业化规模增长的希望所在。今年5月开始的众包平台建设是万里长征,不仅需要融资,还需要找到合伙人组建新的团队。虽然当前既没有钱又没人,但万里长征已经迈出了第一步,采用企业微信+自己搭建的gitlab以原......
  • 4.23博客
    建民老师的课真是今天的快乐源泉学习内容:安卓<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height=&qu......
  • 4.24博客
    python学习importmathclassShape:defcal_perimeter(self):    pass defcal_area(self):    pass defcal_volume(self):    passclassPoint(Shape):def\__init_\_(self,x=0,y=0):    self.x=x    self.y=y defsetX(s......
  • 【工具推荐】基于Win10系统自带软件Xbox Game Bar录屏后下载安装ffmpeg然后使用ffmpeg
    本文详细介绍了如何基于Win10系统自带软件XboxGameBar录屏,以及如何下载安装ffmpeg,然后如何使用ffmpeg将录屏得到的mp4视频转换为可用于博客中做功能演示用的gif动态图片,同时还提供了一个一键转换脚本,减少繁琐的操作步骤。......