2021-10-01 分類: 網(wǎng)站建設(shè)
第一種方式,用action來(lái)跳轉(zhuǎn)。
1、使用action跳轉(zhuǎn),如果有一個(gè)程序的androidManifest.xml中的某一個(gè)activity的IntentFilter段中定義了包含了相同的action那么這個(gè)Intent就與這個(gè)目標(biāo)action匹配。如果這個(gè)IntentFilter段中沒(méi)有定義Type,Category,那么這個(gè)activity就匹配了。但是如果手機(jī)中有兩個(gè)以上的程序匹配,那么就會(huì)彈出一個(gè)對(duì)話可框來(lái)提示說(shuō)明。
action的值在android中有很多預(yù)定義,如果你想直接轉(zhuǎn)到你自己定義的Intent接收者,你可以在接收者的IntentFilter中加入一個(gè)自定義的action值(同時(shí)要設(shè)定Category值為"android.intent.category.DEFaULT"),在你的Intent中設(shè)定該值為Intent的action,就直接能跳轉(zhuǎn)到你自己的Intent接收者中。因?yàn)檫@個(gè)action在系統(tǒng)中是唯一的。
2,data/type,你可以用Uri來(lái)做為data,比如Uriuri=Uri.parse(http://www.google.com);
Intenti=newIntent(Intent.aCTION_VIEW,uri);手機(jī)的Intent分發(fā)過(guò)程中,會(huì)根據(jù)http://www.google.com的scheme判斷出數(shù)據(jù)類型type
手機(jī)的Brower則能匹配它,在Brower的Manifest.xml中的IntenFilter中首先有aCTION_VIEWaction,也能處理http:的type。
3,至于分類Category,一般不要去在Intent中設(shè)置它,如果你寫Intent的接收者,就在Manifest.xml的activity的IntentFilter中包含android.category.DEFaULT,這樣所有不設(shè)置Category(Intent.addCategory(Stringc);)的Intent都會(huì)與這個(gè)Category匹配。
4,extras(附加信息),是其它所有附加信息的集合。使用extras可以為組件提供擴(kuò)展信息,比如,如果要執(zhí)行“發(fā)送電子郵件”這個(gè)動(dòng)作,可以將電子郵件的標(biāo)題、正文等保存在extras里,傳給電子郵件發(fā)送組件。
Java代碼packagecom.android.edit_text;
importandroid.app.activity;
importandroid.content.Intent;
importandroid.os.Bundle;
importandroid.view.KeyEvent;
importandroid.view.View;
importandroid.widget.EditText;
publicclassMyEditTextextendsactivity{
privateTextViewm_TextView;
privateEditTextm_EditText;
@Override
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
m_EditText=(EditText)this.findViewById(R.id.EditText01);
m_EditText.setOnKeyListener(editTextKeyListener);
}
privateEditText.OnKeyListenereditTextKeyListener=newEditText.OnKeyListener(){
@Override
publicbooleanonKey(Viewarg0,intarg1,KeyEventarg2){
//action跳轉(zhuǎn),需要在androidManifest.xml中配置action
Intenti=newIntent("android.intent.action.mydialog");
MyEditText.this.startactivity(i);
returnfalse;
}
};
}
復(fù)制代碼Xml代碼
package="com.android.edit_text"android:versionCode="1" android:versionName="1.0"> 復(fù)制代碼第二種方式,用類名跳轉(zhuǎn)。 Intent負(fù)責(zé)對(duì)應(yīng)用中一次操作的動(dòng)作、動(dòng)作涉及數(shù)據(jù)、附加數(shù)據(jù)進(jìn)行描述,android則根據(jù)此Intent的描述,負(fù)責(zé)找到對(duì)應(yīng)的組件,將Intent傳遞給調(diào)用的組件,并完成組件的調(diào)用。Intent在這里起著實(shí)現(xiàn)調(diào)用者與被調(diào)用者之間的解耦作用。 Intent傳遞過(guò)程中,要找到目標(biāo)消費(fèi)者(另一個(gè)activity,IntentReceiver或Service),也就是Intent的響應(yīng)者。 Java代碼packagecom.android; importandroid.app.activity; importandroid.content.Intent; importandroid.os.Bundle; importandroid.view.View; importandroid.view.View.OnClickListener; publicclassFormStuffextendsactivity{ @Override publicvoidonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.formstuff); finalImageButtonbutton=(ImageButton)findViewById(R.id.android_button); button.setOnClickListener(newOnClickListener(){ publicvoidonClick(Viewv){ //用類名跳轉(zhuǎn),需要在androidManifest.xml中申明activity Intentintent=newIntent(FormStuff.this,HelloTabWidget.class); startactivity(intent); } }); } 復(fù)制代碼Xml代碼 package="com.android"android:versionCode="1"android:versionName="1.0"> 復(fù)制代碼一些Intent的常用發(fā): Java代碼顯示網(wǎng)頁(yè) 1.Uriuri=Uri.parse("http://google.com"); 2.Intentit=newIntent(Intent.aCTION_VIEW,uri); 3.startactivity(it); 顯示地圖 1.Uriuri=Uri.parse("geo:38.899533,-77.036476"); 2.Intentit=newIntent(Intent.aCTION_VIEW,uri); 3.startactivity(it); 4.//其他geoURI範(fàn)例 5.//geo:latitude,longitude 6.//geo:latitude,longitudez=zoom 7.//geo:0,0q=my+street+address 8.//geo:0,0q=business+near+city 9.//google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,zoom&mz=mapZoom 路徑規(guī)劃 1.Uriuri=Uri.parse("http://maps.google.com/mapsf=d&saddr=startLatstartLng&daddr=endLatendLng&hl=en"); 2.Intentit=newIntent(Intent.aCTION_VIEW,uri); 3.startactivity(it); 4.//wherestartLat,startLng,endLat,endLngarealongwith6decimalslike:50.123456 打電話 1.//叫出撥號(hào)程序 2.Uriuri=Uri.parse("tel:0800000123"); 3.Intentit=newIntent(Intent.aCTION_DIaL,uri); 4.startactivity(it); 1.//直接打電話出去 2.Uriuri=Uri.parse("tel:0800000123"); 3.Intentit=newIntent(Intent.aCTION_CaLL,uri); 4.startactivity(it); 5.//用這個(gè),要在androidManifest.xml中,加上 6.//<uses-permission /> 傳送SMS/MMS 1.//調(diào)用短信程序 2.Intentit=newIntent(Intent.aCTION_VIEW,uri); 3.it.putExtra("sms_body","TheSMStext"); 4.it.setType("vnd.android-dir/mms-sms"); 5.startactivity(it); 1.//傳送消息 2.Uriuri=Uri.parse("smsto://0800000123"); 3.Intentit=newIntent(Intent.aCTION_SENDTO,uri); 4.it.putExtra("sms_body","TheSMStext"); 5.startactivity(it); 1.//傳送MMS 2.Uriuri=Uri.parse("content://media/external/images/media/23"); 3.Intentit=newIntent(Intent.aCTION_SEND); 4.it.putExtra("sms_body","sometext"); 5.it.putExtra(Intent.EXTRa_STREaM,uri); 6.it.setType("image/png"); 7.startactivity(it); 傳送Email 1.Uriuri=Uri.parse("mailto:xxx@abc.com"); 2.Intentit=newIntent(Intent.aCTION_SENDTO,uri); 3.startactivity(it); 1.Intentit=newIntent(Intent.aCTION_SEND); 2.it.putExtra(Intent.EXTRa_EMaIL,"me@abc.com"); 3.it.putExtra(Intent.EXTRa_TEXT,"Theemailbodytext"); 4.it.setType("text/plain"); 5.startactivity(Intent.createChooser(it,"ChooseEmailClient")); 1.Intentit=newIntent(Intent.aCTION_SEND); 2.String[]tos={"me@abc.com"}; 3.String[]ccs={"you@abc.com"}; 4.it.putExtra(Intent.EXTRa_EMaIL,tos); 5.it.putExtra(Intent.EXTRa_CC,ccs); 6.it.putExtra(Intent.EXTRa_TEXT,"Theemailbodytext"); 7.it.putExtra(Intent.EXTRa_SUBJECT,"Theemailsubjecttext"); 8.it.setType("message/rfc822"); 9.startactivity(Intent.createChooser(it,"ChooseEmailClient")); 1.//傳送附件 2.Intentit=newIntent(Intent.aCTION_SEND); 3.it.putExtra(Intent.EXTRa_SUBJECT,"Theemailsubjecttext"); 4.it.putExtra(Intent.EXTRa_STREaM,"file:///sdcard/mysong.mp3"); 5.sendIntent.setType("audio/mp3"); 6.startactivity(Intent.createChooser(it,"ChooseEmailClient")); 播放多媒體 Uriuri=Uri.parse("file:///sdcard/song.mp3"); Intentit=newIntent(Intent.aCTION_VIEW,uri); it.setType("audio/mp3"); startactivity(it); Uriuri=Uri.withappendedPath(MediaStore.audio.Media.INTERNaL_CONTENT_URI,"1"); Intentit=newIntent(Intent.aCTION_VIEW,uri); startactivity(it); Market相關(guān) 1.//尋找某個(gè)應(yīng)用 2.Uriuri=Uri.parse("market://searchq=pname:pkg_name"); 3.Intentit=newIntent(Intent.aCTION_VIEW,uri); 4.startactivity(it); 5.//wherepkg_nameisthefullpackagepathforanapplication 1.//顯示某個(gè)應(yīng)用的相關(guān)信息 2.Uriuri=Uri.parse("market://detailsid=app_id"); 3.Intentit=newIntent(Intent.aCTION_VIEW,uri); 4.startactivity(it); 5.//whereapp_idistheapplicationID,findtheID 6.//byclickingonyourapplicationonMarkethome 7.//page,andnoticetheIDfromtheaddressbar 1.Uriuri=Uri.fromParts("package",strPackageName,null); 2.Intentit=newIntent(Intent.aCTION_DELETE,uri); 3.startactivity(it); android常用界面切換效果; activity的切換動(dòng)畫指的是從一個(gè)activity跳轉(zhuǎn)到另外一個(gè)activity時(shí)的動(dòng)畫。 {它包括兩個(gè)部分: 一部分是第一個(gè)activity退出時(shí)的動(dòng)畫; 另外一部分時(shí)第二個(gè)activity進(jìn)入時(shí)的動(dòng)畫; 在android的2.0版本之后,有了一個(gè)函數(shù)來(lái)幫我們實(shí)現(xiàn)這個(gè)動(dòng)畫。這個(gè)函數(shù)就是overridePendingTransition @Override publicvoidonCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.SplashScreen); newHandler().postDelayed(newRunnable(){ @Override publicvoidrun(){ IntentmainIntent=newIntent(SplashScreen.this,androidNews.class); SplashScreen.this.startactivity(mainIntent); SplashScreen.this.finish(); overridePendingTransition(R.anim.mainfadein, R.anim.splashfadeout); } },3000); } 上面的代碼只是閃屏的一部分。 getWindow().setWindowanimations(int); getWindow().setWindowanimations(int); 這可沒(méi)有上個(gè)好但是也可以。 實(shí)現(xiàn)淡入淡出的效果1 overridePendingTransition(R.anim.splash_screen_fade,R.anim.splash_screen_hold); 實(shí)現(xiàn)淡入淡出的效果2 overridePendingTransition(android.R.anim.fade_in,android.R.anim.fade_out); 由左向右滑入的效果 overridePendingTransition(android.R.anim.slide_in_left,android.R.anim.slide_out_right); 實(shí)現(xiàn)zoomin和zoomout,即類似iphone的進(jìn)入和退出時(shí)的效果 overridePendingTransition(R.anim.zoomin,R.anim.zoomout); overridePendingTransition(R.anim.zoomin,R.anim.zoomout); 新建zoomin.xml文件 android:interpolator="@android:anim/decelerate_interpolator"> android:fromYScale="2.0"android:toYScale="1.0" android:pivotX="50%p"android:pivotY="50%p" android:duration="@android:integer/config_mediumanimTime"/> 新建zoomout.xml文件 android:interpolator="@android:anim/decelerate_interpolator" android:zadjustment="top"> android:fromYScale="1.0"android:toYScale=".5" android:pivotX="50%p"android:pivotY="50%p" android:duration="@android:integer/config_mediumanimTime"/> android:duration="@android:integer/config_mediumanimTime"/>
當(dāng)前題目:android頁(yè)面跳轉(zhuǎn)和切換的方式
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、品牌網(wǎng)站制作、小程序開(kāi)發(fā)、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源:
創(chuàng)新互聯(lián)
網(wǎng)頁(yè)路徑:http://www.rwnh.cn/news/129292.html
猜你還喜歡下面的內(nèi)容