aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java')
-rw-r--r--src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java b/src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java
deleted file mode 100644
index 8a02b680..00000000
--- a/src/main/java/de/thedevstack/conversationsplus/ui/AboutPreference.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package de.thedevstack.conversationsplus.ui;
-
-import android.content.Context;
-import android.content.Intent;
-import android.preference.Preference;
-import android.util.AttributeSet;
-
-import de.thedevstack.conversationsplus.ConversationsPlusApplication;
-
-public class AboutPreference extends Preference {
- public AboutPreference(final Context context, final AttributeSet attrs, final int defStyle) {
- super(context, attrs, defStyle);
- setSummary();
- }
-
- public AboutPreference(final Context context, final AttributeSet attrs) {
- super(context, attrs);
- setSummary();
- }
-
- @Override
- protected void onClick() {
- super.onClick();
- final Intent intent = new Intent(getContext(), AboutActivity.class);
- getContext().startActivity(intent);
- }
-
- private void setSummary() {
- setSummary(ConversationsPlusApplication.getNameAndVersion());
- }
-}
-