中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android啟動畫面實現

發布時間:2020-07-09 09:12:08 來源:網絡 閱讀:292 作者:qibawangla 欄目:移動開發

在應用程序中經常用到啟動畫面,會啟動一個后臺線程為主程序的運行準備資源。
Android要實現啟動畫面可以這樣做:
這是splash.xml布局文件的代碼[code]<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical">
<ImageView android:layout_height="fill_parent" android:layout_width="fill_parent" android:scaleType="fitCenter" android:src="@drawable/splash"></ImageView>
</LinearLayout>[/code]

放一個ImageView加載啟動畫面圖片
SplashActivity作為主視圖啟動/** 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();
        }
        
    }

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平潭县| 达州市| 曲阳县| 句容市| 平和县| 修武县| 花莲县| 阿拉尔市| 曲阳县| 外汇| 南康市| 霸州市| 金阳县| 湖口县| 阜康市| 大埔县| 西乌珠穆沁旗| 沁源县| 沾益县| 蓬溪县| 靖安县| 汝城县| 民和| 宾川县| 武陟县| 咸阳市| 镶黄旗| 虎林市| 柘荣县| 栖霞市| 鹤庆县| 弥渡县| 治县。| 江西省| 宣化县| 衡水市| 清河县| 滦南县| 昔阳县| 都江堰市| 民权县|