2017年5月11日 星期四

Up Navigate from Settings Activity to Main Activity

Override Original Method in Setting Activity
 @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            // Respond to the action bar's Up/Home button
            case android.R.id.home:
                super.onBackPressed();
                return true;
        }
        return super.onOptionsItemSelected(item);
    }
cited from Stack Overflow

2017年3月3日 星期五

Android 上的 SharePreference 在APP中儲存資料

Save
//取得SharedPreference設定("Preference"為設定檔的名稱)
SharedPreferences settings = getSharedPreferences("Preference", 0);
//置入name屬性的字串
settings.edit().putString("name", nameEditText.getText().toString()).commit();
Restore
//取得SharedPreference設定("Preference"為設定檔的名稱)
SharedPreferences settings = getSharedPreferences("Preference", 0);
//取出name屬性的字串
String name = settings.getString("name", "");
需要注意的是,SharePreference必須在每次使用時設定,否則會出現Exception
轉載自cooking-java

2017年2月26日 星期日

Android 上的 Modbus TCP/IP 測試 App

I realized almost all RW features in Bit, Byte, Word, INT, DINT, REAL, LREAL.
It is a nice app for testing modbus tcp/ip with your android smartphone.
Signed APK can be found in Release folder.
PLZ give me feedback if you find bugs.

よろしくお願いいたします。

2017年2月9日 星期四

7447及7448的使用心得

7448比較容易,我原本照7447的限流方式,用掉了7顆電阻,而內部2k阻抗加起來變得不太亮,左右亮度差很多。

7448並聯限流,用顆排阻就搞定囉

7448配共陰極

2017年2月4日 星期六

自製DAC電源

用掉了一條Y型OTG線,之後有空再自己做一條



話說我的行充沒用,電池都膨脹了,趕緊拆掉,板子留下繼續用

posted from Bloggeroid

2017年1月7日 星期六

在 Android Studio 中使用 Java 8 Lamda ---- Retrolambda Plugin

Android 目前只有 7.0 以上支援JVM8.0,因此在舊版系統中,必須使用插件來轉換
如此一來便能使用匿名表達方式Lambda來撰寫程式
ref link
retrolambda https://github.com/orfjackal/retrolambda
gradle-retrolambda https://github.com/evant/gradle-retrolambda

2017年1月6日 星期五

Intent 啟動 Activity 方法

Intent 可以用來執行許多動作,這裡我們使用Intent來啟動另一個Activity
Bundle 可以放入不同類型的物件,以便在新Activity中取用
Intent intent = new Intent(MainActivity.this,ResultActivity.class);  //建立新Intent來開啟ResultActivity
Bundle bundle = new Bundle();  //建立新Bundle物件
bundle.putBooleanArray("spaced", spaced);  //放入物件 bundle.putInt("標籤名", 目標物件);
bundle.putInt("columns", columns);
bundle.putInt("inputQuantity", inputQuantity);
intent.putExtras(bundle);  //在Intent中加入Bundle物件
startActivity(intent);  //執行Intent
當你在目標Activity中,欲取出物件時
Bundle bundle = this.getIntent().getExtras();  //取得此次呼叫Intent所附帶的Bundle
spaced = bundle.getBooleanArray("spaced");  //用標籤名取得對應元件
columns = bundle.getInt("columns");
inputQuantity = bundle.getInt("inputQuantity");

Blogger 中利用 SyntaxHighlighter 顯示程式碼區塊

將以下內容貼至範本Html的head中
    
    
    
    
    
    
    
    
在文章中使用時
    
    //程式碼內容