This file contains 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"?> | |
<resources> | |
<!-- google's material design colours from | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
<!--reds--> | |
<color name="md_red_50">#FFEBEE</color> | |
<color name="md_red_100">#FFCDD2</color> | |
<color name="md_red_200">#EF9A9A</color> |
This file contains 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
android.app.action.ACTION_PASSWORD_CHANGED | |
android.app.action.ACTION_PASSWORD_EXPIRING | |
android.app.action.ACTION_PASSWORD_FAILED | |
android.app.action.ACTION_PASSWORD_SUCCEEDED | |
android.app.action.DEVICE_ADMIN_DISABLED | |
android.app.action.DEVICE_ADMIN_DISABLE_REQUESTED | |
android.app.action.DEVICE_ADMIN_ENABLED | |
android.app.action.DEVICE_OWNER_CHANGED | |
android.app.action.INTERRUPTION_FILTER_CHANGED | |
android.app.action.LOCK_TASK_ENTERING |
This file contains 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
new Handler(Looper.getMainLooper()).post(new Runnable() { | |
@Override | |
public void run() { | |
Toast.makeText(context, "Your text goes here ...", Toast.LENGTH_LONG).show(); | |
} | |
}); |
This file contains 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
Here's a table of percentages to hex values. E.g. for 50% white you'd use #80FFFFFF. | |
100% — FF | |
95% — F2 | |
90% — E6 | |
85% — D9 | |
80% — CC | |
75% — BF | |
70% — B3 | |
65% — A6 |
This file contains 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"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.andexcelread0" | |
android:versionCode="1" | |
android:versionName="1.0" > | |
<uses-sdk | |
android:minSdkVersion="8" | |
android:targetSdkVersion="21" /> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 String getDate(long time) { | |
Calendar cal = Calendar.getInstance(Locale.ENGLISH); | |
cal.setTimeInMillis(time * 1000); | |
String date = DateFormat.format("dd-MM-yyyy", cal).toString(); | |
return date; | |
} |
This file contains 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
// make sure that your Manifest file has the following line of code: | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
// then in you Java code file: | |
private static final int REQUEST_STORAGE_PERMISSION = 1; | |
public void requestPermission() { | |
// if the permission is NOT granted. | |
if (ContextCompat.checkSelfPermission(this, |
OlderNewer