在應(yīng)用程序中經(jīng)常用到啟動(dòng)畫(huà)面,會(huì)啟動(dòng)一個(gè)后臺(tái)線程為主程序的運(yùn)行準(zhǔn)備資源。
Android要實(shí)現(xiàn)啟動(dòng)畫(huà)面可以這樣做:
這是splash.xml布局文件的代碼[code]
android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical">
[/code]
放一個(gè)ImageView加載啟動(dòng)畫(huà)面圖片
SplashActivity作為主視圖啟動(dòng)/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Handler x = new Handler();
x.postDelayed(new splashhandler(), 2000);
}
class splashhandler implements Runnable{
public void run() {
startActivity(new Intent(getApplication(),MainActivity.class));
SplashActivity.this.finish();
}
}
創(chuàng)新互聯(lián)是專(zhuān)業(yè)的衛(wèi)東網(wǎng)站建設(shè)公司,衛(wèi)東接單;提供成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行衛(wèi)東網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!