Skip to content

Instantly share code, notes, and snippets.

@akira-sasaki
Created November 28, 2014 06:54
Show Gist options
  • Save akira-sasaki/a9706b3a8f21b324d2ab to your computer and use it in GitHub Desktop.
Save akira-sasaki/a9706b3a8f21b324d2ab to your computer and use it in GitHub Desktop.
MyActivity.java
package gclue.com.mywacth;
import android.app.Activity;
import android.content.Context;
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;
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) {
int mId = 1;
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(mContext)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("MyTitle")
.setContentText("Test message from Android");
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