Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android應用開發教程之二十五:自定義圖片剪輯頭像設置

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

編輯:關於android開發

  很早就有有看到有朋友在討論QQ頭像的裁剪上傳是怎麼實現的,吼吼,之前小馬也沒做過,好奇之下學習下,發現以前項目中有類型的功能,結合官方文檔裡面的解釋,就更好玩了,急急忙忙寫51裡的,今天聽變3主題曲,重新記錄在WorePress裡,記錄編程的過程,希望能與更多的朋友交流學習,文章中的截圖是動態的,我暈………….貌似WorePress不支持Gif還是怎麼了,今天不動了,jekyll也不支持,啊啊啊啊……想看動態效果看下51:http://mzh3344258.blog.51cto.com/blog/1823534/808837  不看的跳過, 如果覺得有用,請記得分享出去,只求能讓更多開發的朋友學習使用,小馬先謝謝了,一樣的,先看下效果圖(效果圖小馬不解釋了,直接流水寫下去,小馬是直接在模擬器裡寫的,能在真機上使用,因為很簡單),再看代碼是怎麼實現的:

  一:主布局界面

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  二:點擊控件觸發事件後效果圖

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  三:拍照完之後效果圖

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  四:裁剪界面效果圖

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  五:點擊相冊後返回的圖片效果圖

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  六:裁剪完從相冊PICK的保存後的效果圖

Android應用開發教程之二十五:自定義圖片剪輯頭像設置

  下面直接來看下主控制類代碼,如下:

Java代碼
  1. package com.xiaoma.piccut.demo;    
  2.    
  3. import java.io.File;  
  4. import android.app.Activity;  
  5. import android.app.AlertDialog;  
  6. import android.content.DialogInterface;  
  7. import android.content.Intent;  
  8. import android.graphics.Bitmap;  
  9. import android.graphics.drawable.BitmapDrawable;  
  10. import android.graphics.drawable.Drawable;  
  11. import android.net.Uri;  
  12. import android.os.Bundle;  
  13. import android.os.Environment;  
  14. import android.provider.MediaStore;  
  15. import android.view.View;  
  16. import android.view.View.OnClickListener;  
  17. import android.widget.Button;  
  18. import android.widget.ImageButton;  
  19. import android.widget.ImageView;  
  20. /** 
  21.  * @Title: PicCutDemoActivity.java 
  22.  * @Package com.xiaoma.piccut.demo 
  23.  * @Description: 圖片裁剪功能測試 
  24.  * @author XiaoMa 
  25.  */  
  26. public class PicCutDemoActivity extends Activity implements OnClickListener {    
  27.    
  28.     private ImageButton ib = null;  
  29.     private ImageView iv = null;  
  30.     private Button btn = null;  
  31.     private String tp = null;    
  32.    
  33.     /** Called when the activity is first created. */  
  34.     @Override  
  35.     public void onCreate(Bundle savedInstanceState) {  
  36.         super.onCreate(savedInstanceState);  
  37.         setContentView(R.layout.main);  
  38.         //初始化  
  39.         init();  
  40.     }    
  41.    
  42.     /** 
  43.      * 初始化方法實現 
  44.      */  
  45.     private void init() {  
  46.         ib = (ImageButton) findViewById(R.id.imageButton1);  
  47.         iv = (ImageView) findViewById(R.id.imageView1);  
  48.         btn = (Button) findViewById(R.id.button1);  
  49.         ib.setOnClickListener(this);  
  50.         iv.setOnClickListener(this);  
  51.         btn.setOnClickListener(this);  
  52.     }    
  53.    
  54.     /** 
  55.      * 控件點擊事件實現 
  56.      * 
  57.      * 因為有朋友問不同控件的背景圖裁剪怎麼實現, 
  58.      * 我就在這個地方用了三個控件,只為了自己記錄學習 
  59.      * 大家覺得沒用的可以跳過啦 
  60.      */  
  61.     @Override  
  62.     public void onClick(View v) {  
  63.         switch (v.getId()) {  
  64.         case R.id.imageButton1:  
  65.             ShowPickDialog();  
  66.             break;  
  67.         case R.id.imageView1:  
  68.             ShowPickDialog();  
  69.             break;  
  70.         case R.id.button1:  
  71.             ShowPickDialog();  
  72.             break;    
  73.    
  74.         default:  
  75.             break;  
  76.         }  
  77.     }    
  78.    
  79.     /** 
  80.      * 選擇提示對話框 
  81.      */  
  82.     private void ShowPickDialog() {  
  83.         new AlertDialog.Builder(this)  
  84.                 .setTitle("設置頭像...")  
  85.                 .setNegativeButton("相冊", new DialogInterface.OnClickListener() {  
  86.                     public void onClick(DialogInterface dialog, int which) {  
  87.                         dialog.dismiss();  
  88.                         /** 
  89.                          * 剛開始,我自己也不知道ACTION_PICK是干嘛的,後來直接看Intent源碼, 
  90.                          * 可以發現裡面很多東西,Intent是個很強大的東西,大家一定仔細閱讀下 
  91.                          */  
  92.                         Intent intent = new Intent(Intent.ACTION_PICK, null);    
  93.    
  94.                         /** 
  95.                          * 下面這句話,與其它方式寫是一樣的效果,如果: 
  96.                          * intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI); 
  97.                          * intent.setType(""image/*");設置數據類型 
  98.                          * 如果朋友們要限制上傳到服務器的圖片類型時可以直接寫如:"image/jpeg 、 image/png等的類型" 
  99.                          * 這個地方小馬有個疑問,希望高手解答下:就是這個數據URI與類型為什麼要分兩種形式來寫呀?有什麼區別? 
  100.                          */  
  101.                         intent.setDataAndType(  
  102.                                 MediaStore.Images.Media.EXTERNAL_CONTENT_URI,  
  103.                                 "image/*"); 
  104.                         startActivityForResult(intent, 1);   
  105.   
  106.                     } 
  107.                 }) 
  108.                 .setPositiveButton("拍照", new DialogInterface.OnClickListener() { 
  109.                     public void onClick(DialogInterface dialog, int whichButton) { 
  110.                         dialog.dismiss(); 
  111.                         /** 
  112.                          * 下面這句還是老樣子,調用快速拍照功能,至於為什麼叫快速拍照,大家可以參考如下官方 
  113.                          * 文檔,you_sdk_path/docs/guide/topics/media/camera.html 
  114.                          * 我剛看的時候因為太長就認真看,其實是錯的,這個裡面有用的太多了,所以大家不要認為 
  115.                          * 官方文檔太長了就不看了,其實是錯的,這個地方小馬也錯了,必須改正 
  116.                          */  
  117.                         Intent intent = new Intent(  
  118.                                 MediaStore.ACTION_IMAGE_CAPTURE);  
  119.                         //下面這句指定調用相機拍照後的照片存儲的路徑  
  120.                         intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri  
  121.                                 .fromFile(new File(Environment  
  122.                                         .getExternalStorageDirectory(),  
  123.                                         "xiaoma.jpg"))); 
  124.                         startActivityForResult(intent, 2); 
  125.                     } 
  126.                 }).show(); 
  127.     }   
  128.   
  129.     @Override 
  130.     protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
  131.         switch (requestCode) { 
  132.         // 如果是直接從相冊獲取 
  133.         case 1: 
  134.             startPhotoZoom(data.getData()); 
  135.             break; 
  136.         // 如果是調用相機拍照時 
  137.         case 2: 
  138.             File temp = new File(Environment.getExternalStorageDirectory() 
  139.                     + "/xiaoma.jpg"); 
  140.             startPhotoZoom(Uri.fromFile(temp)); 
  141.             break; 
  142.         // 取得裁剪後的圖片 
  143.         case 3: 
  144.             /** 
  145.              * 非空判斷大家一定要驗證,如果不驗證的話, 
  146.              * 在剪裁之後如果發現不滿意,要重新裁剪,丟棄 
  147.              * 當前功能時,會報NullException,小馬只 
  148.              * 在這個地方加下,大家可以根據不同情況在合適的 
  149.              * 地方做判斷處理類似情況 
  150.              * 
  151.              */ 
  152.             if(data != null){ 
  153.                 setPicToView(data); 
  154.             } 
  155.             break; 
  156.         default: 
  157.             break;   
  158.   
  159.         } 
  160.         super.onActivityResult(requestCode, resultCode, data); 
  161.     }   
  162.   
  163.     /** 
  164.      * 裁剪圖片方法實現 
  165.      * @param uri 
  166.      */ 
  167.     public void startPhotoZoom(Uri uri) { 
  168.         /* 
  169.          * 至於下面這個Intent的ACTION是怎麼知道的,大家可以看下自己路徑下的如下網頁 
  170.          * yourself_sdk_path/docs/reference/android/content/Intent.html 
  171.          * 直接在裡面Ctrl+F搜:CROP ,之前小馬沒仔細看過,其實安卓系統早已經有自帶圖片裁剪功能, 
  172.          * 是直接調本地庫的,小馬不懂C C++  這個不做詳細了解去了,有輪子就用輪子,不再研究輪子是怎麼 
  173.          * 制做的了...吼吼 
  174.          */ 
  175.         Intent intent = new Intent("com.android.camera.action.CROP"); 
  176.         intent.setDataAndType(uri, "image/*"); 
  177.         //下面這個crop=true是設置在開啟的Intent中設置顯示的VIEW可裁剪 
  178.         intent.putExtra("crop", "true"); 
  179.         // aspectX aspectY 是寬高的比例 
  180.         intent.putExtra("aspectX", 1); 
  181.         intent.putExtra("aspectY", 1); 
  182.         // outputX outputY 是裁剪圖片寬高 
  183.         intent.putExtra("outputX", 150); 
  184.         intent.putExtra("outputY", 150); 
  185.         intent.putExtra("return-data", true); 
  186.         startActivityForResult(intent, 3); 
  187.     }   
  188.   
  189.     /** 
  190.      * 保存裁剪之後的圖片數據 
  191.      * @param picdata 
  192.      */  
  193.     private void setPicToView(Intent picdata) {  
  194.         Bundle extras = picdata.getExtras();  
  195.         if (extras != null) {  
  196.             Bitmap photo = extras.getParcelable("data");  
  197.             Drawable drawable = new BitmapDrawable(photo);    
  198.    
  199.             /** 
  200.              * 下面注釋的方法是將裁剪之後的圖片以Base64Coder的字符方式上 
  201.              * 傳到服務器,QQ頭像上傳采用的方法跟這個類似 
  202.              */   
  203.    
  204.             /*ByteArrayOutputStream stream = new ByteArrayOutputStream(); 
  205.             photo.compress(Bitmap.CompressFormat.JPEG, 60, stream); 
  206.             byte[] b = stream.toByteArray(); 
  207.             // 將圖片流以字符串形式存儲下來   
  208.   
  209.             tp = new String(Base64Coder.encodeLines(b)); 
  210.             /**這個地方大家可以寫下給服務器上傳圖片的實現,直接把tp直接上傳就可以了, 
  211.             *服務器處理的方法是服務器那邊的事了,吼吼   
  212.   
  213.             *如果下載到的服務器的數據還是以Base64Coder的形式的話,可以用以下方式轉換 
  214.             *為我們可以用的圖片類型就OK啦...吼吼  */  
  215.             Bitmap dBitmap = BitmapFactory.decodeFile(tp);  
  216.             Drawable drawable = new BitmapDrawable(dBitmap);  
  217.             */  
  218.             ib.setBackgroundDrawable(drawable);  
  219.             iv.setBackgroundDrawable(drawable);  
  220.         }  
  221.     }    
  222.    
  223. }  

       下面來看下裁剪中用到的類,大家詳細看下頭注釋:

Java代碼
  1. package com.xiaoma.piccut.demo;    
  2.    
  3. /** 
  4.  * 下面這些注釋是下載這個類的時候本來就有的,本來要刪除的,但看了下竟然是license,吼吼, 
  5.  * 好東西,留在注釋裡,以備不時之用,大家有需要加license的可以到下面的網址找哦 
  6.  */   
  7.    
  8. //EPL, Eclipse Public License, V1.0 or later, http://www.eclipse.org/legal  
  9. //LGPL, GNU Lesser General Public License, V2.1 or later, http://www.gnu.org/licenses/lgpl.html  
  10. //GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html  
  11. //AL, Apache License, V2.0 or later, http://www.apache.org/licenses  
  12. //BSD, BSD License, http://www.opensource.org/licenses/bsd-license.php  
  13. /** 
  14. * A Base64 encoder/decoder. 
  15. * <p> 
  16. * This class is used to encode and decode data in Base64 format as described in RFC 1521. 
  17. * <p> 
  18. * Project home page: <a href="http://www.source-code.biz/base64coder/java/">www.source-code.biz/base64coder/java</a><br> 
  19. * Author: Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland<br> 
  20. * Multi-licensed: EPL / LGPL / GPL / AL / BSD. 
  21. */   
  22.    
  23. /** 
  24.  * 這個類在上面注釋的網址中有,大家可以自行下載下,也可以直接用這個, 
  25.  * 公開的Base64Coder類(不用深究它是怎麼實現的, 
  26.  * 還是那句話,有輪子直接用輪子),好用的要死人了... 
  27.  * 小馬也很無恥的引用了這個網址下的東東,吼吼... 
  28. * @Title: Base64Coder.java 
  29. * @Package com.xiaoma.piccut.demo 
  30. * @Description: TODO 
  31. * @author XiaoMa 
  32.  */   
  33.    
  34. public class Base64Coder {    
  35.    
  36. //The line separator string of the operating system.  
  37. private static final String systemLineSeparator = System.getProperty("line.separator");    
  38.    
  39. //Mapping table from 6-bit nibbles to Base64 characters.  
  40. private static char[]    map1 = new char[64];  
  41. static {  
  42.    int i=0;  
  43.    for (char c='A'; c<='Z'; c++) map1[i++] = c; 
  44.    for (char c='a'; c<='z'; c++) map1[i++] = c; 
  45.    for (char c='0'; c<='9'; c++) map1[i++] = c; 
  46.    map1[i++] = '+'; map1[i++] = '/'; }   
  47.   
  48. //Mapping table from Base64 characters to 6-bit nibbles. 
  49. private static byte[]    map2 = new byte[128]; 
  50. static { 
  51.    for (int i=0; i<map2.length; i++) map2[i] = -1; 
  52.    for (int i=0; i<64; i++) map2[map1[i]] = (byte)i; }   
  53.   
  54. /** 
  55. * Encodes a string into Base64 format. 
  56. * No blanks or line breaks are inserted. 
  57. * @param s  A String to be encoded. 
  58. * @return   A String containing the Base64 encoded data. 
  59. */ 
  60. public static String encodeString (String s) { 
  61. return new String(encode(s.getBytes())); }   
  62.   
  63. /** 
  64. * Encodes a byte array into Base 64 format and breaks the output into lines of 76 characters. 
  65. * This method is compatible with <code>sun.misc.BASE64Encoder.encodeBuffer(byte[])</code>. 
  66. * @param in  An array containing the data bytes to be encoded. 
  67. * @return    A String containing the Base64 encoded data, broken into lines. 
  68. */ 
  69. public static String encodeLines (byte[] in) { 
  70. return encodeLines(in, 0, in.length, 76, systemLineSeparator); }   
  71.   
  72. /** 
  73. * Encodes a byte array into Base 64 format and breaks the output into lines. 
  74. * @param in            An array containing the data bytes to be encoded. 
  75. * @param iOff          Offset of the first byte in <code>in</code> to be processed. 
  76. * @param iLen          Number of bytes to be processed in <code>in</code>, starting at <code>iOff</code>. 
  77. * @param lineLen       Line length for the output data. Should be a multiple of 4. 
  78. * @param lineSeparator The line separator to be used to separate the output lines. 
  79. * @return              A String containing the Base64 encoded data, broken into lines. 
  80. */ 
  81. public static String encodeLines (byte[] in, int iOff, int iLen, int lineLen, String lineSeparator) { 
  82. int blockLen = (lineLen*3) / 4; 
  83. if (blockLen <= 0) throw new IllegalArgumentException(); 
  84. int lines = (iLen+blockLen-1) / blockLen; 
  85. int bufLen = ((iLen+2)/3)*4 + lines*lineSeparator.length(); 
  86. StringBuilder buf = new StringBuilder(bufLen); 
  87. int ip = 0; 
  88. while (ip < iLen) { 
  89.    int l = Math.min(iLen-ip, blockLen); 
  90.    buf.append (encode(in, iOff+ip, l)); 
  91.    buf.append (lineSeparator); 
  92.    ip += l; } 
  93. return buf.toString(); }   
  94.   
  95. /** 
  96. * Encodes a byte array into Base64 format. 
  97. * No blanks or line breaks are inserted in the output. 
  98. * @param in  An array containing the data bytes to be encoded. 
  99. * @return    A character array containing the Base64 encoded data. 
  100. */ 
  101. public static char[] encode (byte[] in) { 
  102. return encode(in, 0, in.length); }   
  103.   
  104. /** 
  105. * Encodes a byte array into Base64 format. 
  106. * No blanks or line breaks are inserted in the output. 
  107. * @param in    An array containing the data bytes to be encoded. 
  108. * @param iLen  Number of bytes to process in <code>in</code>. 
  109. * @return      A character array containing the Base64 encoded data. 
  110. */ 
  111. public static char[] encode (byte[] in, int iLen) { 
  112. return encode(in, 0, iLen); }   
  113.   
  114. /** 
  115. * Encodes a byte array into Base64 format. 
  116. * No blanks or line breaks are inserted in the output. 
  117. * @param in    An array containing the data bytes to be encoded. 
  118. * @param iOff  Offset of the first byte in <code>in</code> to be processed. 
  119. * @param iLen  Number of bytes to process in <code>in</code>, starting at <code>iOff</code>. 
  120. * @return      A character array containing the Base64 encoded data. 
  121. */ 
  122. public static char[] encode (byte[] in, int iOff, int iLen) { 
  123. int oDataLen = (iLen*4+2)/3;       // output length without padding 
  124. int oLen = ((iLen+2)/3)*4;         // output length including padding 
  125. char[] out = new char[oLen]; 
  126. int ip = iOff; 
  127. int iEnd = iOff + iLen; 
  128. int op = 0; 
  129. while (ip < iEnd) { 
  130.    int i0 = in[ip++] & 0xff; 
  131.    int i1 = ip < iEnd ? in[ip++] & 0xff : 0; 
  132.    int i2 = ip < iEnd ? in[ip++] & 0xff : 0; 
  133.    int o0 = i0 >>> 2; 
  134.    int o1 = ((i0 &   3) << 4) | (i1 >>> 4); 
  135.    int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6); 
  136.    int o3 = i2 & 0x3F; 
  137.    out[op++] = map1[o0]; 
  138.    out[op++] = map1[o1]; 
  139.    out[op] = op < oDataLen ? map1[o2] : '='; op++; 
  140.    out[op] = op < oDataLen ? map1[o3] : '='; op++; } 
  141. return out; }   
  142.   
  143. /** 
  144. * Decodes a string from Base64 format. 
  145. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  146. * @param s  A Base64 String to be decoded. 
  147. * @return   A String containing the decoded data. 
  148. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  149. */ 
  150. public static String decodeString (String s) { 
  151. return new String(decode(s)); }   
  152.   
  153. /** 
  154. * Decodes a byte array from Base64 format and ignores line separators, tabs and blanks. 
  155. * CR, LF, Tab and Space characters are ignored in the input data. 
  156. * This method is compatible with <code>sun.misc.BASE64Decoder.decodeBuffer(String)</code>. 
  157. * @param s  A Base64 String to be decoded. 
  158. * @return   An array containing the decoded data bytes. 
  159. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  160. */ 
  161. public static byte[] decodeLines (String s) { 
  162. char[] buf = new char[s.length()+3]; 
  163. int p = 0; 
  164. for (int ip = 0; ip < s.length(); ip++) { 
  165.    char c = s.charAt(ip); 
  166.    if (c != ' ' && c != '\r' && c != '\n' && c != '\t') 
  167.       buf[p++] = c; } 
  168.    while ((p % 4) != 0) 
  169.        buf[p++] = '0';   
  170.   
  171. return decode(buf, 0, p); }   
  172.   
  173. /** 
  174. * Decodes a byte array from Base64 format. 
  175. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  176. * @param s  A Base64 String to be decoded. 
  177. * @return   An array containing the decoded data bytes. 
  178. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  179. */ 
  180. public static byte[] decode (String s) { 
  181. return decode(s.toCharArray()); }   
  182.   
  183. /** 
  184. * Decodes a byte array from Base64 format. 
  185. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  186. * @param in  A character array containing the Base64 encoded data. 
  187. * @return    An array containing the decoded data bytes. 
  188. * @throws    IllegalArgumentException If the input is not valid Base64 encoded data. 
  189. */ 
  190. public static byte[] decode (char[] in) { 
  191. return decode(in, 0, in.length); }   
  192.   
  193. /** 
  194. * Decodes a byte array from Base64 format. 
  195. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  196. * @param in    A character array containing the Base64 encoded data. 
  197. * @param iOff  Offset of the first character in <code>in</code> to be processed. 
  198. * @param iLen  Number of characters to process in <code>in</code>, starting at <code>iOff</code>. 
  199. * @return      An array containing the decoded data bytes. 
  200. * @throws      IllegalArgumentException If the input is not valid Base64 encoded data. 
  201. */ 
  202. public static byte[] decode (char[] in, int iOff, int iLen) { 
  203. if (iLen%4 != 0) throw new IllegalArgumentException ("Length of Base64 encoded input string is not a multiple of 4."); 
  204. while (iLen > 0 && in[iOff+iLen-1] == '=') iLen--; 
  205. int oLen = (iLen*3) / 4; 
  206. byte[] out = new byte[oLen]; 
  207. int ip = iOff; 
  208. int iEnd = iOff + iLen; 
  209. int op = 0; 
  210. while (ip < iEnd) { 
  211.    int i0 = in[ip++]; 
  212.    int i1 = in[ip++]; 
  213.    int i2 = ip < iEnd ? in[ip++] : 'A'; 
  214.    int i3 = ip < iEnd ? in[ip++] : 'A';  
  215.    if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127)  
  216.       throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");  
  217.    int b0 = map2[i0];  
  218.    int b1 = map2[i1];  
  219.    int b2 = map2[i2];  
  220.    int b3 = map2[i3];  
  221.    if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)  
  222.       throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");  
  223.    int o0 = ( b0       <<2) | (b1>>>4);  
  224.    int o1 = ((b1 & 0xf)<<4) | (b2>>>2);  
  225.    int o2 = ((b2 &   3)<<6) |  b3;  
  226.    out[op++] = (byte)o0;  
  227.    if (op<oLen) out[op++] = (byte)o1;  
  228.    if (op<oLen) out[op++] = (byte)o2; }  
  229. return out; }    
  230.    
  231. //Dummy constructor.  
  232. private Base64Coder() {}    
  233.    
  234. } // end class Base64Coder  

       最後,小DEMO源碼此下載:http://mzh3344258.blog.51cto.com/blog/1823534/808837 (頁面最下方小Demo源碼即是),有需要的朋友可以下載下來,共同交流學習。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved