This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <configuration> | |
| <source>1.6</source> | |
| <target>1.6</target> | |
| <encoding>UTF-8</encoding> | |
| <!-- does not work. --> | |
| <!-- | |
| <compilerArguments> | |
| <AandroidManifestFile>${project.basedir}/src/main/AndroidManifest.xml</AandroidManifestFile> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| apply plugin: 'android-apt' | |
| apply plugin: 'android-power-assert' | |
| group = 'net.granoeste' | |
| version = '1.0.0' | |
| def AAVersion = '3.0.1' | |
| android { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <TabHost xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:id="@android:id/tabhost" | |
| android:layout_width="fill_parent" | |
| android:layout_height="fill_parent" | |
| > | |
| <RelativeLayout | |
| android:layout_width="fill_parent" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| File dir = context.getFilesDir(); // /data/data/package/files | |
| File dir = context.getCacheDir(); // /data/data/package/cache | |
| File dir = Environment.getDataDirectory(); // /data | |
| File dir = Environment.getDownloadCacheDirectory(); // /cache | |
| File dir = Environment.getExternalStorageDirectory(); // /sdcard | |
| File dir = Environment.getRootDirectory(); // /system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private final int REQUEST_CROP_GALLERY=1; | |
| private File mTempFile; | |
| public void onClick(View v) { | |
| try { | |
| mTempFile = getTempFile(); | |
| // Launch picker to choose photo for selected contact | |
| Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| final private Handler mHandler = new Handler() { | |
| @Override | |
| public void handleMessage(final Message msg) { | |
| switch (msg.what) { | |
| case MESSAGE_ONE: | |
| // TODO: | |
| return; | |
| case MESSAGE_TWO: | |
| // TODO: | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // copy from http://goo.gl/NxT8B | |
| private LocationManager mLocationManager; | |
| private String mBestProvider; | |
| @Override | |
| public void onCreate(Bundle savedInstanceState) { | |
| super.onCreate(savedInstanceState); | |
| // 位置情報サービスマネージャを取得 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Intent serviceIntent = new Intent(this, MyService.class); | |
| PendingIntent pendingIntent | |
| = PendingIntent.getService(this, 0, serviceIntent, PendingIntent.FLAG_UPDATE_CURRENT); | |
| AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE); | |
| am.setInexactRepeating ( | |
| AlarmManager.RTC, | |
| System.currentTimeMillis(), | |
| //AlarmManager.INTERVAL_HOUR, | |
| AlarmManager.INTERVAL_FIFTEEN_MINUTES, | |
| pendingIntent); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="net.granoeste.creador.InternalOnlyAppWidget" | |
| android:versionCode="1" | |
| android:versionName="1.0" | |
| android:installLocation="auto" | |
| > | |
| </manifest> | |
OlderNewer