Created
June 6, 2017 12:43
-
-
Save ssaurel/fd815f6df77b99cae2ad5a5590534125 to your computer and use it in GitHub Desktop.
Main Activity of the Paint App Tutorial on the SSaurel's Channel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.ssaurel.mypaint; | |
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.util.DisplayMetrics; | |
import android.view.Menu; | |
import android.view.MenuInflater; | |
import android.view.MenuItem; | |
public class MainActivity extends AppCompatActivity { | |
private PaintView paintView; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
paintView = (PaintView) findViewById(R.id.paintView); | |
DisplayMetrics metrics = new DisplayMetrics(); | |
getWindowManager().getDefaultDisplay().getMetrics(metrics); | |
paintView.init(metrics); | |
} | |
@Override | |
public boolean onCreateOptionsMenu(Menu menu) { | |
MenuInflater menuInflater = getMenuInflater(); | |
menuInflater.inflate(R.menu.main, menu); | |
return super.onCreateOptionsMenu(menu); | |
} | |
@Override | |
public boolean onOptionsItemSelected(MenuItem item) { | |
switch(item.getItemId()) { | |
case R.id.normal: | |
paintView.normal(); | |
return true; | |
case R.id.emboss: | |
paintView.emboss(); | |
return true; | |
case R.id.blur: | |
paintView.blur(); | |
return true; | |
case R.id.clear: | |
paintView.clear(); | |
return true; | |
} | |
return super.onOptionsItemSelected(item); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment