1

所以我制作了 2 个应用程序,我想从另一个应用程序的活动中运行一个应用程序的活动。我可以通过从第一个应用程序传递一个意图来启动第二个应用程序来做到这一点。我们需要在活动中有一个许可标签才能做到这一点,并且哪个有效。但它不起作用的唯一情况是当我尝试运行第二个应用程序活动(这是我正在谈论的活动)时。我知道它不会运行,因为我设置了权限,但我只是想知道是否有办法仍然在其上运行第二个应用程序的主要活动,而不是从另一个应用程序运行它。

第一个应用清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lab08a_awahla"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="com.example.DANGEROUS_ACTION" />

<permission
    android:name="com.example.DANGEROUS_ACTION"
    android:label="perimission"
    android:protectionLevel="dangerous" />

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.lab08a_awahla.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

第一个应用程序java代码:

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.View;


public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void clicking(View view){
    Intent i=new Intent();
    i.setAction("com.example.DANGEROUS_ACTION");
    startActivity(i);
}
}

第二个应用清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lab08b_awahla"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="com.example.DANGEROUS_ACTION" />

<permission
    android:name="com.example.DANGEROUS_ACTION"
    android:label="perimission"
    android:protectionLevel="dangerous" />

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.lab08b_awahla.MainActivity"
        android:label="@string/app_name"
        android:permission="com.example.DANGEROUS_ACTION" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <action android:name="com.example.DANGEROUS_ACTION" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>

所以我可以从第一个应用程序活动启动该活动,但第二个应用程序活动不会启动。我认为是因为活动下的许可标签。当我将它安装在我的设备上时,它显示“未安装应用程序”。如果有人可以帮助我,我将不胜感激。谢谢

4

1 回答 1

0

除非您摆脱android:permission="com.example.DANGEROUS_ACTION"第二个应用程序的主要活动,否则您无法自行启动该应用程序。因为根据您的清单文件,主屏幕应用程序需要具有android:permission="com.example.DANGEROUS_ACTION"启动应用程序的权限,这在您的情况下是错误的。

于 2013-08-23T19:07:34.780 回答