Finishing Materializing

This commit is contained in:
mmk2410 2015-02-15 02:26:06 +01:00
parent e1e3b178e8
commit 38e17fa041
11 changed files with 785 additions and 305 deletions

View file

@ -1,6 +1,8 @@
package de.marcelkapfer.morseconverter;
import android.content.Intent;
import android.content.res.Resources;
import android.net.Uri;
import android.os.Bundle;
import it.neokree.materialnavigationdrawer.MaterialNavigationDrawer;
import it.neokree.materialnavigationdrawer.elements.MaterialSection;
@ -24,4 +26,11 @@ public class MainActivity extends MaterialNavigationDrawer {
allowArrowAnimation();
this.disableLearningPattern();
}
public void developerProfile(){
Intent gplusProfile = new Intent(Intent.ACTION_VIEW, Uri.parse("https://plus.google.com/+MarcelMichaelKapfer/posts"));
startActivity(gplusProfile);
}
}