1、登录界面 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width= ...
分类:
移动开发 时间:
2020-05-10 17:16:19
阅读次数:
67
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" and ...
分类:
其他好文 时间:
2020-05-10 17:11:43
阅读次数:
52
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-05-10 17:03:12
阅读次数:
54
知识点: 1、在垂直布局中,我们可以指定 layout_weight的大小,来平均分配view占据的屏幕大小,这时候要把height设置为0dp(水平的设置宽度为0) 2、gravity控制子视图的显示位置 <EditText android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-05-10 16:40:52
阅读次数:
71
首先需要在布局里添加一下组件 <androidx.recyclerview.widget.RecyclerView android:id="@+id/recipe_list_view" android:layout_width="match_parent" android:layout_height ...
分类:
移动开发 时间:
2020-04-27 17:22:57
阅读次数:
307
我们做一个这样的界面 1、点击按钮,可以唤起 打电话 、发短信的界面 2、长按按钮,直接拨号和发送短信 我们通过在界面上绑定点击监听 <Button android:id="@+id/btn_call" android:layout_width="wrap_content" android:layo ...
分类:
其他好文 时间:
2020-04-13 19:51:11
阅读次数:
80
layout中定义组件 <Spinner android:id="@+id/spinner" android:layout_width="wrap_content" android:layout_height="wrap_content"> </Spinner> 使用数组为spinner静态赋值 在 ...
分类:
移动开发 时间:
2020-04-10 09:14:39
阅读次数:
134
一、基本控件介绍 1、Android中所有控件的顶层基类view的常用属性: android:id设置控件的标识符号 android:layout_width设置子组件的布局宽度 android:layout_height设置子组件的布局高度 android:background设置控件的背景色 a ...
分类:
移动开发 时间:
2020-03-19 17:43:43
阅读次数:
86
[toc] 新建一个UIWidgetDemo来测试Android中的控件和布局。 控件 TextView android中所有控件都有android:layout_width和android:layout_height这两个属性。这两个属性的可选值有3个:match_parent,fill_pare ...
分类:
移动开发 时间:
2020-03-13 21:02:08
阅读次数:
68
UI组件的基本属性 android:id 指定该控件的唯一标识,可通过findViewById("id")获取指定的界面组件 android:layout_width 指定该组件的宽度.match_parent与父容器具有相同的宽度;wrap_content能包裹内容即可; android:layo ...
分类:
移动开发 时间:
2020-03-09 20:47:23
阅读次数:
157