package com.example.p85; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import androi ...
分类:
其他好文 时间:
2019-12-24 10:07:20
阅读次数:
65
一、关于AndroidManifest.xml AndroidManifest.xml清单文件是每个Android程序中必须的文件,它是整个Android程序的全局描述文件,除了能声明程序中的Activities,Content Providers,Services,和Intent Receiver ...
分类:
移动开发 时间:
2019-12-15 13:00:06
阅读次数:
160
需求:有项目A,B。需要将B集成到A中,作为A的一个模块。 方法: 1.将B工程的app下面的build.gradle文字中 apply plugin: 'com.android.application' 改为 apply plugin: 'com.android.library', 意思是将B作为 ...
分类:
其他好文 时间:
2019-12-11 11:07:01
阅读次数:
169
procedure ToInstallApk(filename: string); var aFile: Jfile; Intent: JIntent; begin Try aFile := TJfile.JavaClass.init(stringtojstring(DownPath),string... ...
1、不带数据的activityt跳转可以通过如下代码跳转,两个activity之间没有数据传递; Intent intent = new Intent(this ,跳转的activity.class) staintentrtActivity(intent) 而在应用中还需要用到将一个activity ...
分类:
移动开发 时间:
2019-11-23 18:24:05
阅读次数:
70
1.manifest中注册 1.manifest中注册 在Activity中注册,如下:注:此为必须存在的 在Activity中注册,如下:注:此为必须存在的 <intent-filter> <action android:name="action.action.action1"/> <action ...
分类:
移动开发 时间:
2019-11-23 12:44:40
阅读次数:
91
package com.example.myapplication;import androidx.appcompat.app.AppCompatActivity;import android.content.Intent;import android.os.Bundle;import... ...
分类:
其他好文 时间:
2019-10-26 18:57:57
阅读次数:
82
1、首先需要弄明白什么是implicit(隐藏) intent什么是explicit(明确) intent。 Explicit Intent明确的指定了要启动的Acitivity ,比如以下Java代码: Intent intent= new Intent(this, SecondActivity. ...
分类:
移动开发 时间:
2019-10-11 10:31:57
阅读次数:
118
val isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT val intent = Intent(if (isKitKat) Intent.ACTION_OPEN_DOCUMENT else Intent.ACTION_GE ...
分类:
移动开发 时间:
2019-10-10 20:24:28
阅读次数:
148
public void onAttach这个代码片段如果缺少的话会出现这样一个错误,这个错误之前找了很久(小白)哈哈 java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android. ...
分类:
移动开发 时间:
2019-10-02 14:51:34
阅读次数:
122