4

ここで見つけた例に従って、アプリのアクティビティの 1 つを開くための Web リンクを取得しました。動作するようになりましたが、URL に含まれる変数と値のペアを取得する必要があります。

この URL http://www.tapabook.com/tapa/?tapa=578をクリックすると、正しいアクティビティが開きますが、getPathSegments() は「tapa」である 1 つのセグメントのみを取得します (「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_VIEW から呼び出されているかどうかを確認し、その場合はデータを取得するアクティビティのコードを次に示します。

   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);
    }

どんな助けでも大歓迎です。

4

1 に答える 1

1

getEncodedQuery()は、Uri のクエリ部分全体を提供します。ドキュメントから:

この URI からエンコードされたクエリ コンポーネントを取得します。クエリは、クエリ セパレータ ('?') の後、フラグメント セパレータ ('#') の前に来ます。このメソッドは、「 http://www.google.com/search?q=android 」に対して「q=android」を返します。

代わりにそれを使用してくださいgetPathSegments()

于 2013-02-04T01:10:36.037 に答える