可以參考以下文章
1. http://android-er.blogspot.tw/2014/04/example-of-programming-android-nfc.html
2. http://developer.android.com/guide/topics/connectivity/nfc/nfc.html
下載 android studio example 檔案: (使用 Android Studio 1.4 開發)
https://drive.google.com/file/d/0B1BLJ4r7axiQcFZNTGlDdXFDLTg/view?usp=sharing
2015年11月12日 星期四
使用 ZXING 進行條碼(1~2維) 掃描
這個議題在網路上的範例相當多,但是我也花了許多功夫,才找到可執行的範例,特紀錄如下。
1. 使用 Android Studio 1.4
2. New 一個 Empty Activity的 project
3. 參考 http://lazycatnote.blogspot.tw/2015/03/androidqr-code.html 的說明,但是加的位置及內容略為調整。
(a) 在 Gradle Scripts / build gradle (Module: app) 加入程式碼:
當出現需要 Sync的訊息時,按下 Sync now (此時會自動下載相關檔案,無需自行下載 ZXING 套件)
(b) MainActivity 內容
4. 完工
5. 範例下載: https://drive.google.com/file/d/0B1BLJ4r7axiQczVIVGhySy1uRGs/view?usp=sharing
1. 使用 Android Studio 1.4
2. New 一個 Empty Activity的 project
3. 參考 http://lazycatnote.blogspot.tw/2015/03/androidqr-code.html 的說明,但是加的位置及內容略為調整。
(a) 在 Gradle Scripts / build gradle (Module: app) 加入程式碼:
repositories { mavenCentral() maven { url "http://dl.bintray.com/journeyapps/maven" } } dependencies { // Supports Android 4.0.3 and later (API level 15) compile 'com.journeyapps:zxing-android-embedded:2.0.1@aar' // Supports Android 2.1 and later (API level 7), but not optimal for later Android versions. // If you only plan on supporting Android 4.0.3 and up, you don't need to include this. compile 'com.journeyapps:zxing-android-legacy:2.0.1@aar' // Convenience library to launch the scanning and encoding Activities. // It automatically picks the best scanning library from the above two, depending on the // Android version and what is available. compile 'com.journeyapps:zxing-android-integration:2.0.1@aar' // Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier. // This mostly affects encoding, but you should test if you plan to support these versions. // Older versions e.g. 2.2 may also work if you need support for older Android versions. compile 'com.google.zxing:core:3.0.1'}
當出現需要 Sync的訊息時,按下 Sync now (此時會自動下載相關檔案,無需自行下載 ZXING 套件)
(b) MainActivity 內容
package com.example.ray.myapplication2; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.app.Activity; import com.google.zxing.integration.android.*; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { private Activity mainactivity; private TextView scan_content; private TextView scan_format; private Button scan_btn; @Override protected void onCreate(Bundle saveInstanceStat){ super.onCreate(saveInstanceStat); setContentView(R.layout.activity_main); init_view(); scan_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { IntentIntegrator scanIntegrator = new IntentIntegrator(mainactivity); scanIntegrator.initiateScan(); } }); } public void onActivityResult(int requestCode, int resultCode, Intent intent){ IntentResult scanningResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent); if(scanningResult!=null){ String scanContent=scanningResult.getContents(); String scanFormat=scanningResult.getFormatName(); scan_content.setText(scanContent); scan_format.setText(scanFormat); }else{ Toast.makeText(getApplicationContext(),"nothing",Toast.LENGTH_SHORT).show(); } } private void init_view(){ this.scan_content=(TextView)findViewById(R.id.scan_content); this.scan_format=(TextView)findViewById(R.id.scan_format); this.mainactivity=this; this.scan_btn = (Button)findViewById(R.id.scan_btn); } }(c) active_main.xml 加入相對的Button及Textview
4. 完工
5. 範例下載: https://drive.google.com/file/d/0B1BLJ4r7axiQczVIVGhySy1uRGs/view?usp=sharing
2015年11月11日 星期三
Mac 安裝 Windows 8.1
近來要將一台mac air 與 一台 macbook pro 裝上windows, 結果折騰了好久,就是忘了一些步驟,將其主要步驟紀錄如下,各步驟詳細內容網路上都可找到,就不贅述了。
1. 準備windows的iso檔與一個隨身碟,應該8G的就夠了。
2. 在 osx下利用finder 執行應用程式/工具程式下的 bootcamp。
3. bootcamp會指示安裝windows的步驟,其中下載windows的支援程式部分要花蠻多時間的。
4. 裝好windows後,進入windows後會發現有些driver還沒裝(如 無線網卡),不要緊張,到控制台下找到bootcamp執行,即可裝好。如果要對觸控板做一些設定,也是在bootcamp裡面。
裝機結果發現 macbook 與 mac air都可用同一支bootcamp做出來的隨身碟內容,不必重做。當一台做好後,另一台在 osx下執行bootcamp時,前兩項(製作usb與下載windows支援程式)都可不必勾選了。
1. 準備windows的iso檔與一個隨身碟,應該8G的就夠了。
2. 在 osx下利用finder 執行應用程式/工具程式下的 bootcamp。
3. bootcamp會指示安裝windows的步驟,其中下載windows的支援程式部分要花蠻多時間的。
4. 裝好windows後,進入windows後會發現有些driver還沒裝(如 無線網卡),不要緊張,到控制台下找到bootcamp執行,即可裝好。如果要對觸控板做一些設定,也是在bootcamp裡面。
裝機結果發現 macbook 與 mac air都可用同一支bootcamp做出來的隨身碟內容,不必重做。當一台做好後,另一台在 osx下執行bootcamp時,前兩項(製作usb與下載windows支援程式)都可不必勾選了。
訂閱:
文章 (Atom)