Skip to content

Instantly share code, notes, and snippets.

@akira-sasaki
Created November 28, 2014 07:36
Show Gist options
  • Save akira-sasaki/61732c89eaf364807fcd to your computer and use it in GitHub Desktop.
Save akira-sasaki/61732c89eaf364807fcd to your computer and use it in GitHub Desktop.
MyActivity.java
package gclue.com.mywacth;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationManagerCompat;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import static gclue.com.mywacth.R.drawable;
public class MyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
Button mButton = (Button)findViewById(R.id.Button01);
final Context mContext = this;
mButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(mContext, MyActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
Intent testIntent = new Intent();
testIntent.setAction(Intent.ACTION_VIEW);
Uri uri = Uri.parse("http://www.gclue.com/");
testIntent.setData(uri);
PendingIntent pengingTestIntent = PendingIntent.getActivity(mContext, 0, testIntent, 0);
int mId = 1;
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(mContext)
.setSmallIcon(drawable.ic_launcher)
.setContentTitle("MyTitle")
.setContentText("Test message from Android")
.setContentIntent(pendingIntent)
.addAction(drawable.ic_launcher, "Web Page", pengingTestIntent);
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(mContext);
notificationManager.notify(mId, notificationBuilder.build());
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment