android實現(xiàn)Splash閃屏效果示例
本文實例講述了android實現(xiàn)Splash閃屏效果的方法。分享給大家供大家參考,具體如下:
Java代碼:
public class Splash extends Activity{
private final int SPLASH_DISPLAY_LENGHT = 1000;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
Intent mainIntent = new Intent(Splash.this, Application.class);
Splash.this.startActivity(mainIntent);
Splash.this.finish();
}
}, SPLASH_DISPLAY_LENGHT);
}
}
AndroidManifest.xml
Xml代碼:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Application" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.DEFAULT" />
<category android:name="ndroid.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:name="Splash" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
PS:這里再為大家提供一個關于AndroidManifest.xml權限控制的在線查詢工具:
Android Manifest功能與權限描述大全:
http://tools.jb51.net/table/AndroidManifest
更多關于Android相關內容感興趣的讀者可查看本站專題:《Android編程之activity操作技巧總結》、《Android視圖View技巧總結》、《Android操作SQLite數據庫技巧總結》、《Android操作json格式數據技巧總結》、《Android數據庫操作技巧總結》、《Android文件操作技巧匯總》、《Android編程開發(fā)之SD卡操作方法匯總》、《Android開發(fā)入門與進階教程》、《Android資源操作技巧匯總》及《Android控件用法總結》
希望本文所述對大家Android程序設計有所幫助。
- Android實現(xiàn)閃屏效果
- Android 自定義閃屏頁廣告倒計時view效果
- Android中使用Handler及Countdowntimer實現(xiàn)包含倒計時的閃屏頁面
- Android應用閃屏頁延遲跳轉的三種寫法
- Android實現(xiàn)閃屏歡迎界面
- Android中閃屏實現(xiàn)方法小結(普通閃屏、倒計時閃屏、倒計時+動畫閃屏)
- Android切換至SurfaceView時閃屏(黑屏閃一下)以及黑屏移動問題的解決方法
- Android實現(xiàn)閃屏及注冊和登錄界面之間的切換效果
- Android 實現(xiàn)閃屏頁和右上角的倒計時跳轉實例代碼
- Android實現(xiàn)應用程序的閃屏效果
相關文章
android通過Location API顯示地址信息的實現(xiàn)方法
這篇文章主要介紹了android通過Location API顯示地址信息的方法,涉及Android操作Geocoder類獲取地址信息的相關技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-07-07
Android 跨進程SharedPreferences異常詳解
這篇文章主要介紹了Android 跨進程SharedPreferences異常詳解的相關資料,需要的朋友可以參考下2017-05-05
詳解Android短信的發(fā)送和廣播接收實現(xiàn)短信的監(jiān)聽
本篇文章主要介紹了Android短信的發(fā)送和廣播接收實現(xiàn)短信的監(jiān)聽,可以實現(xiàn)短信收發(fā),有興趣的可以了解一下。2016-11-11
Android?RecyclerLineChart實現(xiàn)圖表繪制教程
這篇文章主要為大家介紹了Android?RecyclerLineChart實現(xiàn)圖表繪制教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-12-12

