android特殊用法

來源:互聯網
上載者:User

http://dev.10086.cn/cmdn/wiki/index.php?doc-view-2089.html

1.讓一個圖片透明:

複製到剪貼簿  Java代碼
  1. Bitmap buffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_4444);buffer.eraseColor(Color.TRANSPARENT);   

2. 直接發送郵件:

複 制到剪貼簿  Java代碼
  1. Intent intent = new Intent(Intent.ACTION_SENDTO,  Uri .fromParts("mailto", "test@test.com", null));    
  2. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    
  3. context.startActivity(intent);   

3. 程式控制螢幕變亮:

複 制到剪貼簿  Java代碼
  1. WindowManager.LayoutParams lp = getWindow().getAttributes();    
  2. lp.screenBrightness = 100 / 100.0f;    
  3. getWindow().setAttributes(lp);  

4. 過濾特定文本

複 制到剪貼簿  Java代碼
  1. Filter filter = myAdapter.getFilter();    
  2. filter.filter(mySearchText);   

5.scrollView scroll停止事件

複 制到剪貼簿  Java代碼
  1. setOnScrollListener(new OnScrollListener(){       
  2. public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {         
  3. // TODO Auto-generated method stub    }       
  4. public void onScrollStateChanged(AbsListView view, int scrollState) {         
  5. // TODO Auto-generated method stub         
  6. if(scrollState == 0) Log.i("a", "scrolling stopped...");    }  });}   

6. 對於特定的程式 發起一個關聯供開啟

複 制到剪貼簿  C/C++代碼
  1. Bitmap bmp = getImageBitmap(jpg);    
  2. String path = getFilesDir().getAbsolutePath() + "/test.png";    
  3. File file = new File(path);    
  4. FileOutputStream fos = new FileOutputStream(file);    
  5. bmp.compress( CompressFormat.PNG, 100, fos );    
  6.   fos.close();    
  7.      
  8.    Intent intent = new Intent();    
  9.    intent.setAction(android .content.Intent.ACTION_VIEW);    
  10.    intent.setDataAndType(Uri .fromFile(new File(path)), "image/png");    
  11.    startActivity(intent);    
  12. 對 於圖片上邊的不適用索引格式會出錯。    
  13. Intent intent = new Intent();     
  14. intent.setAction(android .content.Intent.ACTION_VIEW);     
  15. File file = new File("/sdcard/test.mp4");     
  16. intent.setDataAndType(Uri .fromFile(file), "video/*");     
  17. startActivity(intent);    
  18.   
  19. Intent intent = new Intent();     
  20. intent.setAction(android .content.Intent.ACTION_VIEW);     
  21. File file = new File("/sdcard/test.mp3");     
  22. intent.setDataAndType(Uri .fromFile(file), "audio/*");     
  23. startActivity(intent);   

7. 設定文本外觀

複 制到剪貼簿  Java代碼
  1. setTextAppearance(context, android .R.style.TextAppearance_Medium);    
  2. android :textAppearance="?android :attr/textAppearanceMedium"  

8. 設定單獨的發起模式:

複 制到剪貼簿  Java代碼
  1. <activity           
  2.   android :name=".ArtistActivity"           
  3.   android :label="Artist"           
  4.   android :launchMode="singleTop">       
  5.   </activity>    
  6.   
  7. Intent i = new Intent();           
  8.    i.putExtra(EXTRA_KEY_ARTIST, id);          
  9.     i.setClass(this, ArtistActivity.class);           
  10.     i.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);          
  11.      startActivity(i);   

9. 建立一個圓角圖片
這個的主要原理其實就是利用遮罩,先建立一個圓角方框 然後將圖片放在下面:

複製到剪貼簿  Java代碼
  1. Bitmap myCoolBitmap = ... ;    
  2.       int w = myCoolBitmap.getWidth(), h = myCoolBitmap.getHeight();    
  3.       Bitmap rounder = Bitmap.createBitmap(w,h,Bitmap.Config.ARGB_8888);    
  4.       Canvas canvas = new Canvas(rounder);       
  5.       Paint xferPaint = new Paint(Paint.ANTI_ALIAS_FLAG);    
  6.       xferPaint.setColor(Color.RED);    
  7.       canvas.drawRoundRect(new RectF(0,0,w,h), 20.0f, 20.0f, xferPaint);        
  8.       xferPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));   
複製到剪貼簿  Java代碼
  1. //然後呢實現    
  2. canvas.drawBitmap(myCoolBitmap, 0,0, null);    
  3. canvas.drawBitmap(rounder, 0, 0, xferPaint);    

10.在notification 上的icon上加上數字 給人提示有多少個未讀

複 制到剪貼簿  Java代碼
  1. Notification notification = new Notification (icon, tickerText, when);    
  2. notification .number = 4;   

11背景漸 變:
首先建立檔案drawable/shape.xml

複製到剪貼簿  Java代碼
  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <shape xmlns:android ="http://schemas.android .com/apk/res/android " android :shape="rectangle">    
  3.     <gradient android :startColor="#FFFFFFFF" android :endColor="#FFFF0000"    
  4.             android :angle="270"/>    
  5. </shape>    

在該檔案中設定漸層的開始顏色(startColor)、結束顏色 (endColor)和角度(angle)

接著建立一個主題values/style.xml

複製到剪貼簿  Java代碼
  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <resources>    
  3. <style name="NewTheme" parent="android :Theme">    
  4. <item name="android :background">@drawable/shape</item>    
  5. </style>    
  6. </resources>   

然 後在AndroidManifest.xml檔案中的application或activity中引入該主題,如:

複製到剪貼簿  Java代碼
  1. <activity android :name=".ShapeDemo" android :theme="@style/NewTheme">    

該 方法同樣適用於控制項  http://17f8.cn/trackback.php?tbID=259&extra=9d45e9

12. 儲存資料 當你在一個執行個體中儲存待用資料,此樣本關閉後 下一個執行個體想引用 待用資料就會為null,這裡呢必須重寫applition

複製到剪貼簿  Java代碼
  1. public class MyApplication extends Application{       
  2.    private String thing = null;       
  3.    public String getThing(){           
  4.      return thing;       
  5.      }       
  6.      public void setThing( String thing ){          
  7.       this.thing = thing;    }    
  8.       }    
  9.       public class MyActivity extends Activity {       
  10.       private MyApplication app;       
  11.       public void onCreate(Bundle savedInstanceState) {           
  12.       super.onCreate(savedInstanceState);           
  13.       app = ((MyApplication)getApplication());           
  14.       String thing = app.getThing();       
  15.       }    
  16.       }   

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.