在Android中Intent的概念及應用(二)——Intent過濾器相關選項

來源:互聯網
上載者:User

標籤:execution   settings   category   pat   learn   附加   microsoft   span   如何   

一、如果多個Activity擁有同一個Intent Action,啟動時用同一個Action啟動會是什麼情況?   如何指定某一個Activity啟動?

    在多個Activity擁有同一個Intent Action的情況下,如若想啟動某一指定Activity,則在該<intent-filter>

  中添加<data android:scheme="app"/>。而且,將啟動的代碼寫為:

    startActivity(new Intent("com.w.learnIntent.intent.action.MyAty", Uri.parse("app://myaty1")));

二、如何 通過瀏覽器連結啟動本地Activity?

1、在建立的項目LaunchLocalApp中建立一個Activity,並在AndroidManifest.xml檔案中進行配置:

  <activity android:name=".LocalAppAty">
    <intent-filter>
      <category android:name="android.intent.category.BROWSABLE"/>  <!--可瀏覽的-->
      <category android:name="android.intent.category.DEFAULT"/>
      <action android:name="android.intent.action.VIEW"/>
      <data android:scheme="app"/>  <!--協議的名字-->
    </intent-filter>
  </activity>

    將其安裝到模擬器上。

2、編寫index.html頁面(WebStorm)並執行:

    <a href="app://LocalApp">Launch My App</a>  <!--LocalApp是任意參數-->

3、通過模擬器內的瀏覽器訪問10.0.2.2:63343/WebStormProjects/index.html,點選連結即可訪問該Activity

 (localhost通過模擬器來訪問,其地址是10.0.2.2)。

(附加:

  使用WebStorm時,彈出requested without authorization,you can copy URL and open it in browser to trust it的問題。

  解決方案:

    File—>Settings—>Build,Execution,Deployment—>Debugger中,勾選上Allow unsigned requests的選項,應用即可。)

  三、如何能接收到傳過來的參數?

  LocalAppAty.java:

    Uri uri = getIntent().getData();
    System.out.println(uri);

  運行程式則控制台輸出:

    I/System.out: app://LocalApp

 


在Android中Intent的概念及應用(二)——Intent過濾器相關選項

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.