我目前在eclipse中使用android SDK制作了自己的网络浏览器,但是当我使用我的应用程序时,在设置中它不允许我将此浏览器设置为默认浏览器,或者如果我点击谷歌应用程序上的链接它会给我消息“打开”,我的应用程序不存在。我需要在我的代码中添加什么来告诉 android 我的应用程序是一个网络浏览器吗?这是我的清单文件。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rarster.QuantumBrowser"
android:versionCode="5"
android:versionName="1.4" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<uses-permission android:maxSdkVersion="21" android:name="android.permission.INTERNET"/>
<application
android:hardwareAccelerated="true"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Start"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Settings"
android:label="@string/app_name" />
<activity
android:name=".Home"
android:label="@string/app_name" />
<activity
android:name=".SocialNetwork"
android:label="@string/app_name" />
<activity
android:name=".Home2"
android:label="@string/app_name" />
<activity
android:name=".Note"
android:label="@string/app_name" />
<activity
android:name=".News"
android:label="@string/app_name" />
<activity
android:name=".MainActivity"
android:label="@string/app_name" />
<activity
android:name=".Intro"
android:label="@string/app_name" />
</application>
</manifest>