Works by

Ren's blog

@rennnosuke_rk 技術ブログです

2014-03-01から1ヶ月間の記事一覧

Android:rotate時のActivity再生成

すごい雑だけどメモ。 Caution: Your activity will be destroyed and recreated each time the user rotates the screen. When the screen changes orientation, the system destroys and recreates the foreground activity because the screen configurat…

文字列switchについて

気になったのでメモメモ。あとこの機能、Java8からのものだと思ってた。 java7実装の文字列switch 文字列switch構文内で分岐するとする。 public static String getSwitchString(String str) { switch (str) { case "a": return "str is a"; case "b": retur…

ZigBeeについて

備忘録。通信モデルについて書くとか言って6日も放置した挙句別のこと書いてすんません。 ZigBeeとは ZigBeeとは近距離の無線通信規格(無線PAN)の一つです。伝送速度は250kbpsと比較的低速なのですが、省電力なのが強みの無線PANです。 通信データが小さく、…