Install and open gnome-color-chooser
.
Go to
you are done !!
Go to
Specific → Tooltips and put black foreground over pale yellow background.you are done !!
Specific → Tooltips and put black foreground over pale yellow background.android.permission.INTERNET to your AndroidManifest.xml.public void onStart()
{
super.onStart();
FlurryAgent.onStartSession(this, "9GKQD4EBX123FEP6874H");
// your code
}
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
// your code
}
File -> Settings -> Editor -> General -> Auto Import -> Java and make the following changes:Insert imports on paste value to AllAdd unambigious imports on the fly option as checked textview1.setBackgroundColor(Color.parseColor("#ffffff"));
textview1.setBackgroundColor(Color.RED);
textView1.setBackgroundColor(R.color.black);
File -> Settings -> Editor -> Auto Import -> Java and make the following changes:Insert imports on paste value to AllAdd unambigious imports on the fly option as checkedCTRL + NCTRL + Shift + NALT + Left-Arrow; ALT + Right-ArrowCTRL + ECTRL + GCTRL + SHIFT + BACKSPACECTRL + BCTRL + ALT + BF4CTRL + UCTRL + ALT + HCTRL + SHIFT + FCTRL + ALT + LCTRL + ALT + OCTRL + SPACEALT + ENTERCTRL + ALT + TShift + F6CTRL + /CTRL + SHIFT + /ALT + UP/DOWNCTRL + PCTRL + QCTRL + YCTRL + Bpublic void onBackPressed() {
Intent setIntent = new Intent(Intent.ACTION_MAIN);
setIntent.addCategory(Intent.CATEGORY_HOME);
setIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(setIntent);
}
public void onBackPressed() {
super.onBackPressed();
startActivity(new Intent(ThisActivity.this, NextActivity.class)); finish(); } @Override
public void onBackPressed() {
// do nothing.
}