OmniGears: Remove wallpaper settings
Change-Id: Ia661a525b0ab81d9ffbca4c0f1df913ea205ce7e
Signed-off-by: YumeMichi <do4suki@gmail.com>
diff --git a/res/xml/omni_dashboard_fragment.xml b/res/xml/omni_dashboard_fragment.xml
index f6f27af..d4262b7 100644
--- a/res/xml/omni_dashboard_fragment.xml
+++ b/res/xml/omni_dashboard_fragment.xml
@@ -21,7 +21,6 @@
<Preference
android:key="style_settings"
android:title="@string/style_settings_title"
- android:summary="@string/style_settings_summary"
android:icon="@drawable/ic_settings_style"
android:fragment="org.omnirom.omnigears.interfacesettings.StyleSettings" />
diff --git a/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java b/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java
index a793e21..d9cdb1b 100644
--- a/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java
+++ b/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java
@@ -20,8 +20,6 @@
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
-import android.content.pm.PackageManager;
-import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.preference.ListPreference;
@@ -48,9 +46,6 @@
public class StyleSettings extends SettingsPreferenceFragment implements
Preference.OnPreferenceChangeListener, Indexable {
private static final String TAG = "StyleSettings";
- private static final String CUSTOM_WALL_BROWSE = "custom_wall_browse";
-
- private Preference mWallBrowse;
@Override
public void onResume() {
@@ -66,9 +61,6 @@
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.style_settings);
-
- mWallBrowse = findPreference(CUSTOM_WALL_BROWSE);
- mWallBrowse.setEnabled(isBrowseWallsAvailable());
}
@Override
@@ -81,13 +73,6 @@
return true;
}
- private boolean isBrowseWallsAvailable() {
- PackageManager pm = getPackageManager();
- Intent browse = new Intent();
- browse.setClassName("org.omnirom.omnistyle", "org.omnirom.omnistyle.BrowseWallsActivity");
- return pm.resolveActivity(browse, 0) != null;
- }
-
public static final Indexable.SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
new BaseSearchIndexProvider() {
@Override