diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 53282d6e..8f5a87ea 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -60,13 +60,6 @@ THE SOFTWARE.
android:name="android.appwidget.provider"
android:resource="@xml/one_cell_widget" />
-
-
-
-
-
diff --git a/res/layout/one_cell_widget_configure.xml b/res/layout/one_cell_widget_configure.xml
deleted file mode 100644
index 340695b2..00000000
--- a/res/layout/one_cell_widget_configure.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index fe76664d..e826be80 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -41,8 +41,6 @@ THE SOFTWARE.
Starting up...
- Place Widget
- Double tap widget to open player (reduces responsiveness)Choose Playlist Name
@@ -138,6 +136,8 @@ THE SOFTWARE.
When active, playback will be stopped after the given period of inactivityIdle TimeoutThe amount of time that must pass before becoming idle
+ Double Tap Widget
+ Double-tapping the 1x1 widget will open the player. Incurs a 400ms delay before the widget responds to actions.Use ScrobbleDroid APIScrobble to Last.FM through ScrobbleDroid or Simple Last.FM Scrobbler
diff --git a/res/xml/one_cell_widget.xml b/res/xml/one_cell_widget.xml
index d17ed4c0..56f6acea 100644
--- a/res/xml/one_cell_widget.xml
+++ b/res/xml/one_cell_widget.xml
@@ -3,6 +3,5 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="72dip"
android:minHeight="72dip"
- android:configure="org.kreed.vanilla.OneCellWidgetConfigure"
android:initialLayout="@layout/one_cell_widget"
- />
\ No newline at end of file
+ />
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index 8b769344..19bef649 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -118,6 +118,11 @@ THE SOFTWARE.
android:title="@string/idle_timeout_title"
android:summary="@string/idle_timeout_summary"
android:dependency="use_idle_timeout" />
+
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package org.kreed.vanilla;
-
-import android.app.Activity;
-import android.appwidget.AppWidgetManager;
-import android.content.Intent;
-import android.content.SharedPreferences;
-import android.os.Bundle;
-import android.preference.PreferenceManager;
-import android.view.View;
-import android.view.View.OnClickListener;
-import android.widget.CheckBox;
-
-/**
- * A configuration dialog for the OneCellWidget. Displays the double tap
- * preference.
- */
-public class OneCellWidgetConfigure extends Activity implements OnClickListener {
- /**
- * The id of the widget we are configuring.
- */
- private int mAppWidgetId;
- /**
- * The check box for the double-tap-opens-players preference.
- */
- private CheckBox mDoubleTap;
-
- @Override
- public void onCreate(Bundle icicle)
- {
- super.onCreate(icicle);
-
- setResult(RESULT_CANCELED);
-
- setContentView(R.layout.one_cell_widget_configure);
-
- mDoubleTap = (CheckBox)findViewById(R.id.double_tap);
- findViewById(R.id.place).setOnClickListener(this);
-
- Bundle extras = getIntent().getExtras();
- if (extras != null)
- mAppWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);
-
- if (mAppWidgetId == AppWidgetManager.INVALID_APPWIDGET_ID)
- finish();
- }
-
- public void onClick(View view)
- {
- boolean doubleTap = mDoubleTap.isChecked();
-
- // save the setting
- SharedPreferences.Editor prefs = PreferenceManager.getDefaultSharedPreferences(this).edit();
- prefs.putBoolean("double_tap_" + mAppWidgetId, doubleTap);
- prefs.commit();
-
- AppWidgetManager manager = AppWidgetManager.getInstance(this);
- new OneCellWidget().onUpdate(this, manager, new int[] { mAppWidgetId });
-
- Intent resultValue = new Intent();
- resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mAppWidgetId);
- setResult(RESULT_OK, resultValue);
- finish();
- }
-}
\ No newline at end of file