2012-01-29 142 views
1

我有佈局與webView。在我的活動中,我從我的服務器加載我的頁面。頁面包含以下鏈接:如何處理自定義協議?

<a href="(custom or http)://load_1">Load 1</a> 
<a href="(custom or http)://load_2">Load 2</a> 

我想加載具體的活動取決於點擊鏈接。怎麼做?

+1

這是http://stackoverflow.com/questions/4846296/android-sdk-webview-call-activity – 2012-01-29 11:08:46

回答

0

在清單中創建一個指向所需活動的元素,然後創建一個指定您的規則的適當的元素。例如:

<activity android:label="@string/app_name" 
      android:name="URLHandler"> 
    <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:scheme="http" android:host="www.this-so-does-not-exist.com" android:path="/something" /> 
    </intent-filter> 
</activity>