編輯:關於Android編程
requestWindowFeature(Window.FEATURE_NO_TITLE);//設置無標題
setContentView(R.layout.activity_main); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);//設置全屏
ImageView welcomeImg = (ImageView) findViewById(R.id.iv);//啟動時顯示的圖片
AlphaAnimation anima = new AlphaAnimation(0.3f, 1.0f);//創建一個透明度從0.3 慢慢到不透明的原圖的動畫效果 anima.setDuration(3000);// 設置動畫顯示時間 welcomeImg.startAnimation(anima);//設置啟動時圖片的動畫 anima.setAnimationListener(new AnimationImpl());//設置動畫監聽
private class AnimationImpl implements AnimationListener {//動畫監聽
@Override public void onAnimationStart(Animation animation) { // welcomeImg.setBackgroundResource(R.drawable.ic_launcher); }
@Override public void onAnimationEnd(Animation animation) { Intent intent = new Intent(MainActivity.this, OtherActivity.class);
startActivity(intent); finish(); }
@Override public void onAnimationRepeat(Animation animation) {
} }
/** * @param path 文件保存路徑 * @param data 保存數據 * */ public static void writeImage
一 、為什麼要用fragment簡單來講,兩句話- 解決局部刷新問題- 一定程度解決屏幕適配問題二 、什麼是fragmentfragment直譯過來是“碎片&
本文實例講述了Android編程滑動效果之Gallery仿圖像集浏覽實現方法。分享給大家供大家參考,具體如下:Android系統自帶一個Gallery浏覽圖片的應用,通過
今天給大家帶來一個很簡單但是很常用的控件ButtonExtendM,在開發中我們經常會用到圖片加文字的組合控件,像這樣:以上圖片都是從微信上截取的。(暫時沒有找到icon