Skip to content

Instantly share code, notes, and snippets.

View AndriLaksono's full-sized avatar

Andri Laksono AndriLaksono

  • Indonesian
View GitHub Profile
@AndriLaksono
AndriLaksono / flash-highlight.css
Created February 3, 2018 17:22 — forked from ghooghe/flash-highlight.css
flash highlight with css3 animation IE10+
.flash {
-moz-animation: flash 2s ease-out;
-moz-animation-iteration-count: 1;
-webkit-animation: flash 2s ease-out;
-webkit-animation-iteration-count: 1;
-ms-animation: flash 2s ease-out;
-ms-animation-iteration-count: 1;
animation: flash 2s ease-out;
animation-iteration-count: 1;
}
package com.example.andritom.contohtugas4;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AlertDialog;