2012年6月29日 星期五

Android 重製ListView

在Google 搜尋這類的資料,其實還蠻多的,大致上都說明的很清楚

其中因為資料過多,當超過6~7筆(依螢幕大小,不同)

在滑動會有資料跳動要注意




在這邊,我是因為部份資料要使用刪除線,但滑動後卻都是刪除線

經過學長的指教,才知道資料一開始會全部已經轉成刪除線,當遇到不用改變時

已經變成刪除線TextView時,當然看到全都是刪除線!!!

所以這時要在另加入恢復成原本,才可以。


2012年6月4日 星期一

Android 讀取JSON

使用方法如下

//將資料寫入JSONArray
JSONArray result = new JSONArray(json_data);
//取出陣列內所有物件
for(int i = 0;i < result.length(); i++) {
    //取出JSON物件
    JSONObject stock_data = result.getJSONObject(i);
    //取得物件內資料
    System.out.println("t:"+stock_data.getString("t"));
    System.out.println("l_cur:"+stock_data.getString("l_cur"));
    System.out.println("c:"+stock_data.getString("c"));
    System.out.println("cp:"+stock_data.getString("cp"));
}


參考資料:http://kie0723.blogspot.tw/2010/12/android-json.html






Android TextView line-through 刪除線

在TextView上加入刪除線

方法如下
TextView textview = (TextView) findViewById(R.id.textview1);
Paint paint = textview.getPaint();
paint.setFlags(Paint.STRIKE_THRU_TEXT_FLAG);
paint.setAntiAlias(true);


轉回來
TextView textview = (TextView) findViewById(R.id.textview1);
Paint paint = textview.getPaint();
paint.setFlags(Paint.ANTI_ALIAS_FLAG);
paint.setAntiAlias(true);



使用Android將檔案傳到Server use PHP

首先先說明Android

在這邊是使用HttpClient來實現上傳,程式如下
public void UploadFiles(String PathFile) {
    new Thread() {  
        @Override  
        public void run() {  
            super.run();  
            
            List< NameValuePair> params = new ArrayList< NameValuePair>();
            params.add(new BasicNameValuePair("file",PathFile));
            
            HttpClient client = new DefaultHttpClient();
            HttpPost post = new HttpPost("Server Address/update.php");
            
            try{
                //setup multipart entity
                MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);

                for(int i=0;i< params.size();i++){
                    //identify param type by Key
                    if(params.get(i).getName().equals("file")){
                        File f = new File(params.get(i).getValue());
                        FileBody fileBody = new FileBody(f);
                        entity.addPart("image"+i,fileBody);
                    }else{
                        entity.addPart(params.get(i).getName(),new StringBody(params.get(i).getValue()));
                    }
                }
                post.setEntity(entity);

                //create response handler
                ResponseHandler< String> handler = new BasicResponseHandler();
                //execute and get response
                UploadFilesResponse = new String(client.execute(post,handler).getBytes(),HTTP.UTF_8);
                if(D) Log.e(TAG, "--- response ---"+ UploadFilesResponse);
            }catch(Exception e){
                e.printStackTrace();
            }
        }  
    }.start();  
}

粉紅字是你要上傳檔案的路徑
紅色字是你的Server路徑


接著在Server寫一隻PHP檔案

update.php
<?php 
    if(move_uploaded_file($_FILES['image0']['tmp_name'], "./ImageFiles/".$_FILES['image0']['name'])){
        echo "uploaded";
    }else{
        echo "unsuccessfully";
    }
?>

因為在Android在上傳資料寫法,是使用多檔案上傳的方式,也就是For迴圈那邊,

所以在PHP也應該是這樣寫,但我PHP並沒直接跑迴圈,就直接抓第一筆  $_FILES['image0']


如果在PHP有必要接收兩個檔案以上,直接在裡面加入迴圈,就可以了



最後記得在Server的路徑建立資料夾,不然傳不上去








Android開啟相機,讀取圖片

在Android開啟相機有幾種寫法,有使用預設相機拍攝,另外一種是自己去撰寫相機的APP

對於單純透過相機取得照片,使用預設相機拍攝就好

因為大部份預設都自動對焦、調整相機細節等等,很方便

除非你是要自己寫專屬的相機,就要自己去刻那些Code


在這裡提供使用預設相機拍攝



首先在Manifest加入使用相機的權限
<!-- Camera -->
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />


接在著程式寫入
//設定檔名
File tmpFile = new File( Environment.getExternalStorageDirectory(), "image.jpg");
Uri outputFileUri = Uri.fromFile(tmpFile);
 
Intent intent =  new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);    //利用intent去開啟android本身的照相介面 
intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri); 
startActivityForResult(intent, 0);

其中裡面的

new File( 路徑, 檔名)

Environment.getExternalStorageDirectory():指SD Card 路徑

這個也是之後拍完照後會儲存至指定的路徑


當拍完後會去丟一個回應,接著再用ImageView物件去顯示,顯示方如下
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
    super.onActivityResult(requestCode, resultCode, data);
    if(D) Log.e(TAG, "--- onActivityResult  ---");
    if (resultCode == RESULT_OK) {
        String img_address = Environment.getExternalStorageDirectory()+"image.jpg";
        Bitmap bmp = BitmapFactory.decodeFile(img_address); //利用BitmapFactory去取得剛剛拍照的圖像
        ImageView ivTest = (ImageView)findViewById(R.id.imageView1);
        ivTest.setImageBitmap(bmp);
        
    }
}