1 Intent.ACTION_VIEW String android.intent.action.VIEW 用于显示用户的数据。比较通用,会根据用户的数据类型打开相应的Activity。比如 tel:13400010001打开拨号程序,http://www.g.cn则会打开浏览器等。 代码1: U ...
分类:
其他好文 时间:
2020-06-11 15:00:19
阅读次数:
55
动态的发布与展示 动态的展示: DongTaiActivity(上传动态文字及照片) package com.lh.std_everything.ui.home.hometype.dongtai; import android.content.Intent; import android.os.Bu ...
分类:
其他好文 时间:
2020-05-24 00:38:14
阅读次数:
51
在ant的List组件中,使用了其他组件(可以使用其他组件,但要在合适的位置),应该是在List中的List.Item标签中使用其他组件 <List grid={{ gutter: 16, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: 3, }} // itemLa ...
分类:
其他好文 时间:
2020-05-23 20:20:52
阅读次数:
103
https://blog.csdn.net/weixin_30664051/article/details/96270296?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.none ...
分类:
其他好文 时间:
2020-05-23 11:15:01
阅读次数:
43
Intent(意图)主要是解决Android应用的各项组件之间的通讯。 对于intent主要的分类主要包括隐式意图和显式意图。显式意图通常主要是启动本应用中的Activity之间的数据,而隐式意图则常见于启动系统中的某些特定的动作,比如打电话,或者是跨应用的Activity启动。通常来说:显式意图: ...
分类:
移动开发 时间:
2020-05-21 19:23:58
阅读次数:
72
在程序运行时申请限权(CALL_PHONE),CALL_PHONE这个限权是编写拨打电话功能的时候需要声明的,安卓6.0之后的,实现,在布局文件中添加 <uses-permission android:name="android.permission.CALL_PHONE"/>声明其限权 之后在Ma ...
分类:
移动开发 时间:
2020-05-21 00:21:10
阅读次数:
67
package com.example.sevenzuoy; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import a ...
分类:
其他好文 时间:
2020-05-19 10:54:05
阅读次数:
50
1.Intent显式跳转页面 val button5 = findViewById<Button>(R.id.mButton5) button5.setOnClickListener { val intent = Intent() intent.setClass(this, ThirdActivit ...
分类:
其他好文 时间:
2020-05-13 11:58:06
阅读次数:
54
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
AndroidManifest.xml 只有两个同时匹配,才能响应 注:一个活动只能指定一个action,但可以指定多个category java ...
分类:
移动开发 时间:
2020-05-07 00:50:27
阅读次数:
65