安卓开发应用
程序员文章站
2022-03-10 23:09:20
RadioButton–RadioButton为单选按钮,它需要与RadioGroup配合使用,提供两个或多个互斥的选项集–RadioGroup是单选组合框,可容纳多个RadioButton,并把它们组合在一起,实现单选状态Android的日志工具LogAndroid中的日志工具类是Log(android.util.Log)Log.v ( ) :用于打印那些最为琐碎、意义最小的日志信息Log.d ( ) :用于打印一些调试信息Log.i ( ) :用于打印一些比较重要的数据Log.w ( )...
RadioButton
–RadioButton为单选按钮,它需要与RadioGroup配合使用,提供两个或多个互斥的选项集
–RadioGroup是单选组合框,可容纳多个RadioButton,并把它们组合在一起,实现单选状态
Android的日志工具Log
Android中的日志工具类是Log(android.util.Log)
Log.v ( ) :用于打印那些最为琐碎、意义最小的日志信息
Log.d ( ) :用于打印一些调试信息
Log.i ( ) :用于打印一些比较重要的数据
Log.w ( ) :用于打印一些警告信息
Log.e ( ) :用于打印程序中的错误信息
页面的创建
上课敲的代码
<?xml version="1.0" encoding="utf-8"?>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@color/black"
android:layout_marginTop="150dp"
android:src="@drawable/icon_smart_park" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
android:background="@drawable/input_normal"
android:hint="请输入账号"
android:textSize="36dp" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
android:background="@drawable/input_normal"
android:hint="请输入密码"
android:textSize="36dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
android:orientation="horizontal">
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住密码" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" 修改密码"/>
</LinearLayout>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:background="@drawable/btn_login_normal"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/btn_register_normal"/>
本文地址:https://blog.csdn.net/weixin_46359264/article/details/107156558
上一篇: 简易UI
推荐阅读
-
「Cardstack」 要通过“全栈式”应用程序框架,降低DApp的开发
-
手柄、风扇、充电宝三合一!Anker发布手游外设:iPhone/安卓通吃
-
华为鸿蒙正式上线,中国将打破谷歌安卓在手机市场的垄断地位
-
微信JS-SDK updateAppMessageShareData安卓不能自定义分享详解
-
鸿蒙用户突破3亿,拳打谷歌安卓,脚踢苹果iOS
-
安卓模拟器闪退怎么办?安卓模拟器应用闪退现象的解决办法介绍
-
安卓手机之利器——豌豆荚使用技巧
-
安卓版微信7.0什么时候发布?微信7.0好看以及强提醒功能使用介绍
-
使用设计模式中的Singleton单例模式来开发iOS应用程序
-
iOS应用开发中使用设计模式中的观察者模式的实例