月下載量上千次的APP源碼分享

在360上面上線了一個月,下載量上千餘次。這裏把代碼都分享出來,供你們學習哈!還包括教你們如何接入廣告,賺點小錢花花,喜歡的幫忙頂一個,大神見了勿噴,小學僧剛學Android沒多久。html

首先介紹這款應用:APP是一款二維碼生成器,雖然如何製做二維碼教程網上有不少,我這裏再嘮叨一下並把個人全部功能模塊代碼都分享出來。java

既然是二維碼生成器那麼咱們如何製做二維碼呢?android

這裏主要用到了Google的Zxing開源包,能夠到網上下載,也能夠到個人csdn上面去下載http://download.csdn.net/detail/u014132820/8223437數據庫

在這裏咱們須要一個輔助類RGBLuminanceSource,這個類Google也提供了,咱們直接粘貼過去就能夠使用了微信

下面是個人代碼組織結構:app

package com.njupt.liyao;

import com.google.zxing.LuminanceSource; 

import android.graphics.Bitmap; 
import android.graphics.BitmapFactory; 
   
import java.io.FileNotFoundException; 
   
/**
 * This class is used to help decode images from files which arrive as RGB data
 * from Android bitmaps. It does not support cropping or rotation.
 * 
 * @author dswitkin@google.com (Daniel Switkin)
 */ 
public final class RGBLuminanceSource extends LuminanceSource { 
   
    private final byte[] luminances; 
   
    public RGBLuminanceSource(String path) throws FileNotFoundException { 
        this(loadBitmap(path)); 
    } 
   
    public RGBLuminanceSource(Bitmap bitmap) { 
        super(bitmap.getWidth(), bitmap.getHeight()); 
   
        int width = bitmap.getWidth(); 
        int height = bitmap.getHeight(); 
        int[] pixels = new int[width * height]; 
        bitmap.getPixels(pixels, 0, width, 0, 0, width, height); 
   
        // In order to measure pure decoding speed, we convert the entire image 
        // to a greyscale array 
        // up front, which is the same as the Y channel of the 
        // YUVLuminanceSource in the real app. 
        luminances = new byte[width * height]; 
        for (int y = 0; y < height; y++) { 
            int offset = y * width; 
            for (int x = 0; x < width; x++) { 
                int pixel = pixels[offset + x]; 
                int r = (pixel >> 16) & 0xff; 
                int g = (pixel >> 8) & 0xff; 
                int b = pixel & 0xff; 
                if (r == g && g == b) { 
                    // Image is already greyscale, so pick any channel. 
                    luminances[offset + x] = (byte) r; 
                } else { 
                    // Calculate luminance cheaply, favoring green. 
                    luminances[offset + x] = (byte) ((r + g + g + b) >> 2); 
                } 
            } 
        } 
    } 
   
    @Override 
    public byte[] getRow(int y, byte[] row) { 
        if (y < 0 || y >= getHeight()) { 
            throw new IllegalArgumentException( 
                    "Requested row is outside the image: " + y); 
        } 
        int width = getWidth(); 
        if (row == null || row.length < width) { 
            row = new byte[width]; 
        } 
   
        System.arraycopy(luminances, y * width, row, 0, width); 
        return row; 
    } 
   
    // Since this class does not support cropping, the underlying byte array 
    // already contains 
    // exactly what the caller is asking for, so give it to them without a copy. 
    @Override 
    public byte[] getMatrix() { 
        return luminances; 
    } 
   
    private static Bitmap loadBitmap(String path) throws FileNotFoundException { 
        Bitmap bitmap = BitmapFactory.decodeFile(path); 
        if (bitmap == null) { 
            throw new FileNotFoundException("Couldn't open " + path); 
        } 
        return bitmap; 
    } 
   
}

  

 

下面這段代碼能夠利用Zxing包將文本信息好比網址,文章生成一張照片,我這裏返回一個Bitmap對象,由於後面還要將其寫入SD卡里面和顯示在ImageView上面。ide

public Bitmap getTwoDimensionPicture(String text,int width,int height) throws WriterException{
        if(text.equals(""))
        {
            text=" ";
        }
        Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
        BitMatrix bitMatrix = new QRCodeWriter().encode(text, 
                BarcodeFormat.QR_CODE, width, height, hints);
        int []pixels = new int[width*height];
        for(int y=0;y<height;y++){
            for(int x=0;x<width;x++){
                if (bitMatrix.get(x, y))
                {
                    pixels[y * width + x] = BLACK;
                }
                else
                {
                    pixels[y * width + x] = WHITE;
                }
            }
        }
        Bitmap bitmap=Bitmap.createBitmap(width, height,Bitmap.Config.ARGB_8888);
        bitmap.setPixels(pixels, 0,width, 0, 0, width, height);
        
        return bitmap;
    }

  

經過上面這段代碼其實咱們已經獲得了存儲文本信息的二維碼圖片了,下面咱們在二維碼寫到SD卡里面而且添加到系統相冊裏面方便用戶調用(由於若是你只是寫入到SD卡里面是不能再系統相冊裏面及時看到的)函數

在App啓動以前咱們應該在SD卡里面建立一個文件夾保存這些二維碼:佈局

	public void createDirctoryToSaveImage(){
		String dirPath=Environment.getExternalStorageDirectory()+File.separator+"TowDimensionCode";
		File dirFile=new File(dirPath);
		if(!dirFile.exists()){
			dirFile.mkdir();
		}
	}
	

接下來是把圖片寫入到SD卡已及如何加入到系統圖庫裏面(如何把圖片添加到系統相冊的幾種方法能夠看個人這篇博客:http://www.cnblogs.com/BasilLee/p/4082450.html ):學習

	public void writeBitMapToSDCard(Bitmap bitmap) throws IOException{
		String fname = DateFormat.format("yyyyMMddhhmmss", new Date()).toString()+".jpg";
		String filePath=Environment.getExternalStorageDirectory()+File.separator+"TowDimensionCode"
						+File.separator+fname;
		File file=new File(filePath);
		FileOutputStream fileOutputStream=new FileOutputStream(file);
		bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fileOutputStream);
		fileOutputStream.flush();
		fileOutputStream.close();
		//把圖片加入到系統圖庫裏面
		MediaStore.Images.Media.insertImage(getApplicationContext().getContentResolver(),
				file.getAbsolutePath(), fname, null);
		//uri獲得的是文件的絕對路徑
		getApplicationContext().sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, 
				Uri.parse("file://"+file.getAbsolutePath())));
		edtText.setText(file.getAbsolutePath());
		Toast.makeText(this, "生成成功", Toast.LENGTH_LONG).show();
	}

 到了這一步咱們已經完成了二維碼的生成已經保存,下面就是咱們怎麼點擊Button打開系統圖庫要用戶來選擇他所需解析的二維碼了:

點擊按鈕打開系統相冊我主要是經過如下兩個方法來實現的:

//打開相冊
        private void setImage() {
            //使用intent調用系統提供的相冊功能,使用startActivityForResult是爲了獲取用戶選擇的圖片
            Intent getAlbum = new Intent(Intent.ACTION_GET_CONTENT);
            getAlbum.setType(IMAGE_TYPE);
            startActivityForResult(getAlbum, IMAGE_CODE);
        }
        
        @Override
        protected void onActivityResult(int requestCode, int resultCode, Intent data){
                if (resultCode != RESULT_OK) {        //此處的 RESULT_OK 是系統自定義得一個常量
                    Log.e("TAG->onresult","ActivityResult resultCode error");
                    return;
                }
                Bitmap bm = null;
                //外界的程序訪問ContentProvider所提供數據 能夠經過ContentResolver接口
                ContentResolver resolver = getContentResolver();
                //此處的用於判斷接收的Activity是否是你想要的那個
                if (requestCode == IMAGE_CODE) {
                    try {
                        Uri originalUri = data.getData();        //得到圖片的uri 
                        bm = MediaStore.Images.Media.getBitmap(resolver, originalUri);        
                        //顯獲得bitmap圖片
                        imgView.setImageBitmap(bm);
                        //這裏開始的第二部分,獲取圖片的路徑:
                        String[] proj = {MediaColumns.DATA};
                        //好像是android多媒體數據庫的封裝接口,具體的看Android文檔
                        Cursor cursor = managedQuery(originalUri, proj, null, null, null); 
                        //按我我的理解 這個是得到用戶選擇的圖片的索引值
                        int column_index = cursor.getColumnIndexOrThrow(MediaColumns.DATA);
                        //將光標移至開頭 ,這個很重要,不當心很容易引發越界
                        cursor.moveToFirst();
                        //最後根據索引值獲取圖片路徑
                        String path = cursor.getString(column_index);
                        edtText.setText(path);
                        btnOpen.setText(R.string.recognitionTwoCode);
                    }catch (IOException e) {
                        Log.e("TAG-->Error",e.toString()); 
                    }
                }
            }

  

到了如今咱們要作的就是把二維碼裏面的內容解析出來了,要咱們來看看如何解析的:

 /**
         * 解析二維碼圖片裏的內容
         * @param filePath 二維碼圖片的位置
         * @throws IOException
         * @throws NotFoundException
         */
        private String readImage(ImageView imageView) { 
            String content = null; 
            Map<DecodeHintType, String> hints = new HashMap<DecodeHintType, String>(); 
            hints.put(DecodeHintType.CHARACTER_SET, "utf-8"); 
            // 得到待解析的圖片 
            Bitmap bitmap = ((BitmapDrawable) imageView.getDrawable()).getBitmap(); 
            RGBLuminanceSource source = new RGBLuminanceSource(bitmap); 
            BinaryBitmap bitmap1 = new BinaryBitmap(new HybridBinarizer(source)); 
            QRCodeReader reader = new QRCodeReader(); 
            try { 
                Result result = reader.decode(bitmap1, hints); 
                // 獲得解析後的文字 
                content = result.getText(); 
            } catch (Exception e) { 
                e.printStackTrace();  
            } 
            return content; 
        } 

這個函數返回一個String類型也就是二維碼裏面所含的文本信息了。

如今功能基本上已經完成了,如今可能你們會想着如何接入廣告賺點小錢了,畢竟程序猿沒妹子喜歡只能努力賺錢了,嘿嘿!下面我來介紹360的廣告平臺的接入,其實代碼很簡單就幾行,可是呢,首先你得下載360的SDK還有建立廣告位,這裏就以個人代碼裏面爲例了!

首先是360的SDK,就是MV_adsdk_v0.1.6.jar包

導入進去之後呢加入這幾行代碼就OK了:

  //ad佈局部分
   private RelativeLayout adContainer = null;
   private IMvBannerAd bannerad = null;
final String adSpaceid = "這是你申請的廣告ID號";
        adContainer=(RelativeLayout)findViewById(R.id.adcontent);
        bannerad = Mvad.showBanner(adContainer, this, adSpaceid, false);
        bannerad.showAds(this);

這裏面RelativeLayout容器是你想要廣告顯示的位置,記得上線時候把Mvad.showBanner最後置爲false這樣才能顯示商業廣告這樣纔能有收入啊,嘿嘿!

說了這麼多,那究竟是個什麼效果呢?下面拿出你的手機掃一掃下面的二維吧下載試試吧~~~~~~你們下載後幫忙給個好評哈~~~程序猿何苦難爲程序猿呢是吧~~嘿嘿

http://zhushou.360.cn/detail/index/soft_id/2212352 (微信掃描不能下載直接到360官網連接去下吧)

若是你和我同樣是學生黨還在考四六級那麼我還有一款小app你們也能夠下載使用,相信對你們四六級考試仍是有幫助的:

http://zhushou.360.cn/detail/index/soft_id/2300203 (微信掃描不能下載直接到360官網連接去下吧)

相關文章
相關標籤/搜索