導航:首頁 > 操作系統 > androidnewintent

androidnewintent

發布時間:2023-07-09 07:10:08

『壹』 android開發intent怎麼傳遞集合

1、Intent(意圖)主要是解決Android應用的各項組件之間的通訊。
2、為了實現傳遞數據這個目的需要以下步驟
3、Activity1需要構造一個 Intent,這個Intent用於告訴系統,我們要做「查看」動作
intent可調用putExtra來存放想要傳遞的數據
4、然後調用setClass,設置Activity1和欲調用的組件Activity2
5、最後調用startActivity將構造的Intent傳入,系統會根據此Intent中的描述,到Activity1中找到滿足此Intent要求的Activity,系統會調用找到的 Activity2最終傳入Intent在Activity2中可使用getIntent來獲取傳遞的Intent,並通過獲取數據的方法來獲取數據代碼示例:
Intent intent = new Intent(); // Activity1
intent.putExtra("one", num1);
intent.putExtra("two", num2);
intent.setClass(FirstActivity.this, SecondActivity.class);
startActivity(intent); Intent intent = getIntent(); //Activity2
String num1 = intent.getStringExtra("one");
String num2 = intent.getStringExtra("two");
int ret = Integer.parseInt(num1) + Integer.parseInt(num2);
result.setText(ret+"");
注意:在使用intent的時候可以使用bundle傳遞復制的數據類型。

『貳』 如何指定Android中的瀏覽器跳轉界面

一、啟動android默認瀏覽器

在Android程序中我們可以通過發送隱式Intent來啟動系統默認的瀏覽器。如果手機本身安裝了多個瀏覽器而又沒有設置默認瀏覽器的話,系統將讓用戶選擇使用哪個瀏覽器來打開連接。關於Intent的更多內容請參考《常用Intent》

示例1

Intent intent =newIntent();

        intent.setAction("android.intent.action.VIEW");

        Uri content_url =Uri.parse("http://www.163.com");

        intent.setData(content_url);

        startActivity(intent);

這樣子,android就可以調用起手機默認的瀏覽器訪問。

二、啟動指定瀏覽器

在Android程序中我們可以通過發送顯式Intent來啟動指定的瀏覽器。

啟動Android原生瀏覽器

示例2

Intent intent =newIntent();       

        intent.setAction("android.intent.action.VIEW");   

        Uri content_url =Uri.parse("http://www.163.com"); 

        intent.setData(content_url);         

        intent.setClassName("com.android.browser","com.android.browser.BrowserActivity"); 

        startActivity(intent);

只要修改以intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");

中相應的應用程序packagename 和要啟動的activity即可啟動其他瀏覽器來

uc瀏覽器":"com.uc.browser", "com.uc.browser.ActivityUpdate「

opera瀏覽器:"com.opera.mini.android", "com.opera.mini.android.Browser"

qq瀏覽器:"com.tencent.mtt", "com.tencent.mtt.MainActivity"

閱讀全文

與androidnewintent相關的資料

熱點內容
辭海分冊pdf 瀏覽:931
安卓系統頁面怎麼調 瀏覽:773
壓縮文件的用法 瀏覽:32
如何用瀏覽器訪問伺服器地址 瀏覽:205
soft編譯器 瀏覽:113
三軸車床的編程指令 瀏覽:71
天生敏感pdf 瀏覽:565
西瓜星球伺服器怎麼刷鑽石 瀏覽:838
php生成chm 瀏覽:658
解釋程序和編譯程序產生目標嗎 瀏覽:609
dos命令rem 瀏覽:371
plc程序員水平高低 瀏覽:854
linux伺服器linux雲 瀏覽:373
大腳重置命令 瀏覽:130
app怎麼引導頁面 瀏覽:946
pdf轉換成w0rd 瀏覽:569
壓縮空氣屬於什麼能量類型 瀏覽:881
上海交警app怎麼付費 瀏覽:601
暗黑2怎麼切換伺服器 瀏覽:20
安卓如何玩港服游戲 瀏覽:350