use of com.google.android.gms.ads.InterstitialAd in project Android-NotesApp by HelloPraveenIO.
the class MainActivity method prepareAd.
private void prepareAd() {
interstitialAd = new InterstitialAd(MainActivity.this);
interstitialAd.setAdUnitId("ca-app-pub-8429477298745270/2004640333");
interstitialAd.loadAd(new AdRequest.Builder().build());
}
use of com.google.android.gms.ads.InterstitialAd in project Android-NotesApp by HelloPraveenIO.
the class MainActivity method onCreate.
@TargetApi(Build.VERSION_CODES.O)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
CalligraphyConfig.initDefault(new CalligraphyConfig.Builder().setDefaultFontPath("fonts/whitney.ttf").setFontAttrId(R.attr.fontPath).build());
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
Typeface font2 = Typeface.createFromAsset(getAssets(), "fonts/whitney.ttf");
SpannableStringBuilder SS = new SpannableStringBuilder("Notes");
SS.setSpan(new CustomTypefaceSpan("", font2), 0, SS.length(), Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
if (getSupportActionBar() != null)
getSupportActionBar().setTitle(SS);
DrawerLayout drawer = findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
FloatingActionButton fab = findViewById(R.id.fab);
CoordinatorLayout sv = findViewById(R.id.fabView);
populateData();
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(MainActivity.this, NoteActivity.class);
startActivity(i);
finish();
}
});
boolean fromNew;
boolean fromEdit;
boolean fromDelete;
boolean fromRestore;
if (this.getIntent().getExtras() != null && this.getIntent().getExtras().containsKey("note")) {
fromNew = getIntent().getExtras().getBoolean("new");
fromEdit = getIntent().getExtras().getBoolean("edit");
fromDelete = getIntent().getExtras().getBoolean("delete");
fromRestore = getIntent().getExtras().getBoolean("restore");
if (fromNew)
Snackbar.make(sv, "Note added successfully!", Snackbar.LENGTH_SHORT).show();
if (fromEdit)
Snackbar.make(sv, "Note edited successfully!", Snackbar.LENGTH_SHORT).show();
if (fromDelete)
Snackbar.make(sv, "Note deleted successfully!", Snackbar.LENGTH_SHORT).show();
if (fromRestore)
Snackbar.make(sv, "Note restored successfully!", Snackbar.LENGTH_SHORT).show();
InterstitialAd interstitialAd = new InterstitialAd(MainActivity.this);
interstitialAd.setAdUnitId("ca-app-pub-6275597090094912/5536611682");
interstitialAd.loadAd(new AdRequest.Builder().build());
}
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(MainActivity.this);
boolean shortcut = preferences.getBoolean("shortcut", true);
if (!shortcut) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int notificationId = 1;
NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
String channelId = "NOTES_ADD";
String channelName = "Notes Shortcuts";
@SuppressLint("WrongConstant") NotificationChannel mChannel = new NotificationChannel(channelId, channelName, 3);
if (notificationManager != null) {
mChannel.setSound(null, null);
notificationManager.createNotificationChannel(mChannel);
}
Intent intent = new Intent(this, NoteActivity.class);
intent.putExtra("IS_FROM_NOTIFICATION", true);
@SuppressLint("WrongConstant") PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, intent, NotificationManager.IMPORTANCE_LOW);
NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext(), channelId);
builder.setContentTitle("Tap to add a note");
builder.setContentText("Note something productive today.");
builder.setContentIntent(pendingIntent);
builder.setTicker("Add Notes");
builder.setChannelId(channelId);
builder.setOngoing(true);
builder.setColor(getResources().getColor(R.color.colorPrimary));
builder.setAutoCancel(true);
builder.setSmallIcon(R.drawable.notification_white);
builder.setPriority(NotificationManager.IMPORTANCE_LOW);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(getApplicationContext());
stackBuilder.addNextIntent(intent);
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(resultPendingIntent);
if (notificationManager != null)
notificationManager.notify(notificationId, builder.build());
} else {
Intent intent = new Intent(this, NoteActivity.class);
intent.putExtra("IS_FROM_NOTIFICATION", true);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, intent, 0);
Notification.Builder builder = new Notification.Builder(getApplicationContext());
builder.setContentTitle("Tap to add a note");
builder.setContentText("Note something productive today.");
builder.setContentIntent(pendingIntent);
builder.setTicker("Add Notes");
builder.setOngoing(true);
builder.setAutoCancel(true);
builder.setColor(getResources().getColor(R.color.colorPrimary));
builder.setSmallIcon(R.drawable.notification_white);
builder.setPriority(Notification.PRIORITY_MAX);
Notification notification = builder.build();
NotificationManager notificationManger = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (notificationManger != null)
notificationManger.notify(1, notification);
}
} else {
NotificationManager nMgr = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (nMgr != null)
nMgr.cancelAll();
}
}
use of com.google.android.gms.ads.InterstitialAd in project Android-NotesApp by HelloPraveenIO.
the class NoteActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_note);
interstitialAd = new InterstitialAd(NoteActivity.this);
interstitialAd.setAdUnitId("ca-app-pub-8429477298745270/2004640333");
interstitialAd.loadAd(new AdRequest.Builder().build());
intent2 = new Intent(NoteActivity.this, MainActivity.class);
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(NoteActivity.this);
CalligraphyConfig.initDefault(new CalligraphyConfig.Builder().setDefaultFontPath("fonts/whitney.ttf").setFontAttrId(R.attr.fontPath).build());
Typeface font2 = Typeface.createFromAsset(getAssets(), "fonts/whitney.ttf");
SpannableStringBuilder SS = new SpannableStringBuilder("Add Note");
SS.setSpan(new CustomTypefaceSpan("", font2), 0, SS.length(), Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
if (getSupportActionBar() != null) {
getSupportActionBar().setTitle(SS);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
boolean b = preferences.getBoolean("shortcut", true);
premium = preferences.getInt("premium", 0);
if (!b) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int notificationId = 1;
NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
String channelId = "TN_1";
String channelName = "Type Note Shortcuts";
@SuppressLint("WrongConstant") NotificationChannel mChannel = new NotificationChannel(channelId, channelName, 3);
if (notificationManager != null) {
mChannel.setSound(null, null);
notificationManager.createNotificationChannel(mChannel);
}
Intent intent = new Intent(this, NoteActivity.class);
intent.putExtra("IS_FROM_NOTIFICATION", true);
@SuppressLint("WrongConstant") PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, intent, NotificationManager.IMPORTANCE_LOW);
NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext());
builder.setContentTitle("Tap to add a note");
builder.setContentText("Note something productive today.");
builder.setContentIntent(pendingIntent);
builder.setTicker("Add Notes");
builder.setChannelId(channelId);
builder.setColor(getResources().getColor(R.color.colorPrimary));
builder.setOngoing(true);
builder.setAutoCancel(true);
builder.setSmallIcon(R.drawable.notification_white);
builder.setPriority(Notification.PRIORITY_MAX);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(getApplicationContext());
stackBuilder.addNextIntent(intent);
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(resultPendingIntent);
if (notificationManager != null)
notificationManager.notify(notificationId, builder.build());
} else {
Intent intent = new Intent(this, NoteActivity.class);
intent.putExtra("IS_FROM_NOTIFICATION", true);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, intent, 0);
Notification.Builder builder = new Notification.Builder(getApplicationContext());
builder.setContentTitle("Tap to add a note");
builder.setContentText("Note something productive today.");
builder.setContentIntent(pendingIntent);
builder.setTicker("Add Notes");
builder.setOngoing(true);
builder.setColor(getResources().getColor(R.color.colorPrimary));
builder.setAutoCancel(true);
builder.setSmallIcon(R.drawable.notification_white);
builder.setPriority(Notification.PRIORITY_MAX);
Notification notification = builder.build();
NotificationManager notificationManger = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (notificationManger != null)
notificationManger.notify(1, notification);
}
}
FloatingActionButton fab = findViewById(R.id.add_fab);
text = findViewById(R.id.add_text);
title = findViewById(R.id.add_title);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(@NonNull View v) {
String note = text.getText().toString();
Title = title.getText().toString();
if (note.length() > 0) {
Calendar c = Calendar.getInstance();
@SuppressLint("SimpleDateFormat") SimpleDateFormat df = new SimpleDateFormat("HH:mm dd/MM/yyyy");
String formattedDate = df.format(c.getTime());
DatabaseHandler db = new DatabaseHandler(NoteActivity.this);
db.addNote(new Note(note, formattedDate, imp, Title));
intent2.putExtra("note", true);
intent2.putExtra("new", true);
if (interstitialAd.isLoaded() && premium != 1) {
interstitialAd.show();
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
startActivity(intent2);
finish();
}
});
} else {
startActivity(intent2);
finish();
}
} else {
Snackbar.make(v, "Note is empty!", Snackbar.LENGTH_SHORT).show();
}
}
});
}
use of com.google.android.gms.ads.InterstitialAd in project Android-NotesApp by HelloPraveenIO.
the class BinActivity method onCreate.
@TargetApi(Build.VERSION_CODES.O)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_bin);
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(BinActivity.this);
premium = preferences.getInt("premium", 0);
interstitialAd = new InterstitialAd(BinActivity.this);
interstitialAd.setAdUnitId("ca-app-pub-8429477298745270/2004640333");
interstitialAd.loadAd(new AdRequest.Builder().build());
i = new Intent(BinActivity.this, MainActivity.class);
CalligraphyConfig.initDefault(new CalligraphyConfig.Builder().setDefaultFontPath("fonts/whitney.ttf").setFontAttrId(R.attr.fontPath).build());
Typeface font2 = Typeface.createFromAsset(getAssets(), "fonts/whitney.ttf");
SpannableStringBuilder SS = new SpannableStringBuilder("Trash");
SS.setSpan(new CustomTypefaceSpan("", font2), 0, SS.length(), Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
if (getSupportActionBar() != null) {
getSupportActionBar().setTitle(SS);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
final BinDatabaseHandler db = new BinDatabaseHandler(this);
l = db.getAllNotes();
final RecyclerView recyclerView = findViewById(R.id.binRecyclerView);
final RelativeLayout rl = findViewById(R.id.binPlaceholder);
if (l.isEmpty()) {
recyclerView.setVisibility(View.GONE);
rl.setVisibility(View.VISIBLE);
}
NoteAdapter mAdapter = new NoteAdapter(l);
RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext());
recyclerView.setLayoutManager(mLayoutManager);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.addItemDecoration(new DividerItemDecoration(this, LinearLayoutManager.VERTICAL));
recyclerView.setAdapter(mAdapter);
recyclerView.addOnItemTouchListener(new RecyclerTouchListener(getApplicationContext(), new ClickListener() {
@Override
public void onClick(View view, final int position) {
final Note note = l.get(position);
final String mNote = note.getNote();
final int mStar = note.getStar();
final String mDate = note.getDate();
final String mTitle = note.getTitle();
new MaterialStyledDialog.Builder(BinActivity.this).setIcon(R.drawable.ic_settings_backup_restore).setDescription("You may choose to restore your note or delete it permanently!").setPositiveText("DELETE").onPositive(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
BinDatabaseHandler db = new BinDatabaseHandler(BinActivity.this);
List<Note> l2 = db.getAllNotes();
final Note note2 = l2.get(position);
db.deleteNote(note2);
i.putExtra("note", true);
i.putExtra("delete", true);
if (interstitialAd.isLoaded() && premium != 1) {
interstitialAd.show();
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
startActivity(i);
finish();
}
});
} else {
startActivity(i);
finish();
}
}
}).setNegativeText("RESTORE").onNegative(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
BinDatabaseHandler db = new BinDatabaseHandler(BinActivity.this);
DatabaseHandler db2 = new DatabaseHandler(BinActivity.this);
db2.addNote(new Note(mNote, mDate, mStar, mTitle));
List<Note> l2 = db.getAllNotes();
final Note note2 = l2.get(position);
db.deleteNote(note2);
i.putExtra("note", true);
i.putExtra("restore", true);
if (interstitialAd.isLoaded() && premium != 1) {
interstitialAd.show();
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
startActivity(i);
finish();
}
});
} else {
startActivity(i);
finish();
}
}
}).setNeutralText("DISMISS").onNeutral(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
}
}).setHeaderColor(R.color.colorPrimary).withIconAnimation(false).withDivider(true).show();
}
}));
}
use of com.google.android.gms.ads.InterstitialAd in project superCleanMaster by joyoyao.
the class BatterySavingActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_battery_saving);
getActionBar().setDisplayHomeAsUpEnabled(true);
// applyKitKatTranslucency();
mBatterySavingAdapter = new BatterySavingAdapter(mContext, mAppProcessInfos);
mListView.setAdapter(mBatterySavingAdapter);
bindService(new Intent(mContext, CoreService.class), mServiceConnection, Context.BIND_AUTO_CREATE);
int footerHeight = mContext.getResources().getDimensionPixelSize(R.dimen.footer_height);
mListView.setOnScrollListener(new QuickReturnListViewOnScrollListener(QuickReturnType.FOOTER, null, 0, bottom_lin, footerHeight));
textCounter.setAutoFormat(false);
textCounter.setFormatter(new DecimalFormatter());
textCounter.setAutoStart(false);
// the amount the number increments at each time interval
textCounter.setIncrement(5f);
// the time interval (ms) at which the text changes
textCounter.setTimeInterval(50);
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId("ca-app-pub-4369038195513432/2986510514");
mInterstitialAd.loadAd(new AdRequest.Builder().build());
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
Aggregations