我按照我找到的here示例获取一个web链接,以打开我的应用程序的一个活动。我已经开始工作了,但是现在我需要让它检索url拥有的变量-值对。
当我点击这个urlhttp://www.tapabook.com/tapa/?tapa=578时,它会打开正确的活动,但是getPathSegments()只检索1个片段,即“tapa”(而不是“tapa=578”)。有办法找回整对吗?
这是我的清单,万一有什么问题妨碍了我的要求

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

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/Theme.Sherlock.Light.DarkActionBar"
    android:name="com.alberovalley.tappabook.Tappabook">

    <activity
        android:name="com.alberovalley.tappabook.actividad.LoginA"
        android:configChanges="orientation"
        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="com.alberovalley.tappabook.actividad.MenuFA"
        android:label="@string/app_name">
    </activity>
    <activity
        android:name="com.alberovalley.tappabook.actividad.ListaTapasFA"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.alberovalley.tappabook.actividad.DetalleTapaFA"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
           <data
               android:host="tapabook.com"
               android:pathPrefix="/tapa/"
               android:scheme="http" />
           <data
               android:host="www.tapabook.com"
               android:pathPrefix="/tapa/"
               android:scheme="http" />
        </intent-filter>
    </activity>

</application>

</manifest>

这是我的活动中的代码,我在这里检查它是否是从intent.action_视图调用的,在这种情况下,检索数据。
   Intent i = getIntent();
    final String action = i.getAction();
    Log.d(CData.LOGTAG, "acción del intent " + action);
    if (Intent.ACTION_VIEW.equals(action)) {
        final List<String> segments = i.getData().getPathSegments();
        Log.d(CData.LOGTAG, "Contenido nº segmentos URL interceptada " + segments.size());
        if (segments.size() > 0) {
            Log.d(CData.LOGTAG, "Contenido de la URL interceptada [" + segments.get(0) + "]");
            idTapa = Long.parseLong( segments.get(0) );
        }
    }else{
        idTapa = i.getExtras().getLong(TapaDao.ID, -1);
        Log.d(CData.LOGTAG, "DetalleTapaFA.onCreate idTapa = " + idTapa);
    }

任何帮助都将不胜感激。

最佳答案

getEncodedQuery()将提供uri的整个查询部分。从文档中:
从该uri获取编码的查询组件。之后是查询
查询分隔符('?')在片段分隔符(“”)之前。
此方法将为返回“q=android”
http://www.google.com/search?q=android”。
使用它而不是getPathSegments()

08-17 16:18