A tab completion script that works for Bash. Relies on the BSD md5
command on Mac and md5sum
on Linux, so as long as you have one of those two commands, this should work.
$ gradle [TAB]
/* | |
* 基本的な実装は他を参照してくだち!>< | |
* | |
*/ | |
GoogleMap _map; | |
private void init_map(){ | |
_map = ((SupportMapFragment)fragment).getMap(); | |
_map.setInfoWindowAdapter(new CustomInfoAdapter()); | |
} |
NOTE: Easier way is the X86 way, described on https://www.genymotion.com/help/desktop/faq/#google-play-services | |
Download the following ZIPs: | |
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
Download the correct GApps for your Android version: | |
Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) |
Moved to https://github.com/taky/jane |
Android用のView Injectionライブラリである Butter Knife について解説します (といいますか、サイトに書いてあることをほとんどそのまま日本語にしただけです) 。
Butter Knifeは ActionBarSherlock などでお馴染みの Square のJake WhartonさんによるAndroid用のView Injectionライブラリです。
このライブラリの目的が、
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import javafx.animation.AnimationTimer; | |
import javafx.application.Application; | |
import javafx.event.EventHandler; | |
import javafx.scene.Scene; | |
import javafx.scene.control.Label; | |
import javafx.scene.input.MouseEvent; | |
import javafx.scene.layout.StackPane; |
apply plugin: 'java' | |
sourceCompatibility = targetCompatibility = 1.6 | |
tasks.withType(AbstractCompile) each { it.options.encoding = 'UTF-8' } | |
repositories { | |
mavenCentral() | |
maven {url 'http://maven.seasar.org/maven2'} | |
} |
enum Num { | |
ONE(1) { | |
String toRoman() { "Ⅰ" } | |
}, | |
TWO(2) { | |
String toRoman() { "Ⅱ" } | |
}, | |
THREE(3) { | |
String toRoman() { "Ⅲ" } | |
}; |
package jp.nagakenjs.appcompathelper.app; | |
import android.app.Activity; | |
import android.support.v4.app.Fragment; | |
import android.support.v7.app.ActionBarActivity; | |
public class ActionBarFragment extends Fragment { | |
private ActionBarActivity mActivity; |
https://twitter.com/teshi04/status/354805661596516352
select person, sum(hours) from table where no = '1234' group by person
みたいなのをgrailsで
↓のドメインクラスを作って