3

テキストビューでhttpを処理しようとしています

              Pattern httpMatcher = Pattern.compile("https?://.*"); 
              String httpViewURL = "myhttp";
              Linkify.addLinks(label, httpMatcher, httpViewURL);

マニフェスト ファイル:

    <activity android:exported="false"
        android:name="*****.URLClickedActivity">

        <intent-filter>
            <category android:name="android.intent.category.DEFAULT"/> 
            <action android:name="android.intent.action.VIEW" /> 
            <data android:scheme="myhttp" />
        </intent-filter>
    </activity>

とにかく私はこれを得る:

Intent を処理するアクティビティが見つかりません { act=android.intent.action.VIEW dat= (おまけあり) } *

4

1 に答える 1

4

図式

String httpViewURL = "myhttp";

読むべき

String httpViewURL = "myhttp://";
于 2013-01-12T18:34:09.083 に答える