我开发了一个Android应用程序,并希望使用Intent方法在初始过程中使用QML并通过单击按钮来调用应用程序。我怎样才能做到这一点?感谢。
androidmanifest.xml演示如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.digital.multiviewplayer" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MultiviewPlayerActivity"
android:label="@string/app_name" >
<!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name"
android:value="DisplayShift" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>