[cng1985] r612 committed - [No log message]

0 views
Skip to first unread message

cng...@googlecode.com

unread,
Sep 8, 2011, 11:27:07 PM9/8/11
to cng...@googlegroups.com
Revision: 612
Author: cng1985
Date: Thu Sep 8 20:26:11 2011
Log: [No log message]
http://code.google.com/p/cng1985/source/detail?r=612

Modified:
/adw/AndroidManifest.xml
/adw/res/layout-land/launcher.xml
/adw/res/layout-land/workspace_screen.xml
/adw/res/layout-port/launcher.xml
/adw/res/layout-port/workspace_screen.xml
/adw/res/xml/default_workspace.xml
/adw/src/com/ada/apps/Res.java
/adw/src/com/bwx/bequick/MainSettingsActivity.java
/adw/src/com/bwx/bequick/handlers/VolumeDialog.java
/adw/src/org/adw/launcher2/Launcher.java

=======================================
--- /adw/AndroidManifest.xml Thu Sep 8 18:45:50 2011
+++ /adw/AndroidManifest.xml Thu Sep 8 20:26:11 2011
@@ -9,9 +9,9 @@
for the specific language governing permissions and ** limitations under
the License. */ -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- android:sharedUserId="@string/sharedUserId" package="org.adw.launcher2">
-
- <original-package android:name="org.adw.launcher2" />
+ android:sharedUserId="@string/sharedUserId" package="com.ada.desks">
+
+ <original-package android:name="com.ada.desks" />

<permission
android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
@@ -188,10 +188,6 @@
android:icon="@drawable/ic_logo" android:launchMode="standard"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <intent-filter>
<action android:name="android.intent.action.SEARCH_LONG_PRESS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
=======================================
--- /adw/res/layout-land/launcher.xml Thu Sep 8 17:42:42 2011
+++ /adw/res/layout-land/launcher.xml Thu Sep 8 20:26:11 2011
@@ -16,7 +16,7 @@

<org.adw.launcher2.DragLayer
xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/org.adw.launcher2"
+ xmlns:launcher="http://schemas.android.com/apk/res/com.ada.desks"

android:id="@+id/drag_layer"
android:layout_width="fill_parent"
=======================================
--- /adw/res/layout-land/workspace_screen.xml Thu Sep 8 17:42:42 2011
+++ /adw/res/layout-land/workspace_screen.xml Thu Sep 8 20:26:11 2011
@@ -16,7 +16,7 @@

<org.adw.launcher2.CellLayout
xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/org.adw.launcher2"
+ xmlns:launcher="http://schemas.android.com/apk/res/com.ada.desks"

android:layout_width="fill_parent"
android:layout_height="fill_parent"
=======================================
--- /adw/res/layout-port/launcher.xml Thu Sep 8 17:42:42 2011
+++ /adw/res/layout-port/launcher.xml Thu Sep 8 20:26:11 2011
@@ -16,7 +16,7 @@

<org.adw.launcher2.DragLayer
xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/org.adw.launcher2"
+ xmlns:launcher="http://schemas.android.com/apk/res/com.ada.desks"

android:id="@+id/drag_layer"
android:layout_width="fill_parent"
=======================================
--- /adw/res/layout-port/workspace_screen.xml Thu Sep 8 17:42:42 2011
+++ /adw/res/layout-port/workspace_screen.xml Thu Sep 8 20:26:11 2011
@@ -16,7 +16,7 @@

<org.adw.launcher2.CellLayout
xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/org.adw.launcher2"
+ xmlns:launcher="http://schemas.android.com/apk/res/com.ada.desks"

android:layout_width="fill_parent"
android:layout_height="fill_parent"
=======================================
--- /adw/res/xml/default_workspace.xml Thu Sep 8 17:42:42 2011
+++ /adw/res/xml/default_workspace.xml Thu Sep 8 20:26:11 2011
@@ -14,7 +14,7 @@
limitations under the License.
-->

-<favorites
xmlns:launcher="http://schemas.android.com/apk/res/org.adw.launcher2">
+<favorites
xmlns:launcher="http://schemas.android.com/apk/res/com.ada.desks">
<!-- Far-left screen [0] -->

<!-- Middle screen [2] -->
=======================================
--- /adw/src/com/ada/apps/Res.java Thu Sep 8 18:45:50 2011
+++ /adw/src/com/ada/apps/Res.java Thu Sep 8 20:26:11 2011
@@ -7,7 +7,9 @@

package com.ada.apps;

-import org.adw.launcher2.R;
+import com.ada.desks.R;
+
+

public final class Res {
public static final R.anim anim = new R.anim();
=======================================
--- /adw/src/com/bwx/bequick/MainSettingsActivity.java Thu Sep 8 18:45:50
2011
+++ /adw/src/com/bwx/bequick/MainSettingsActivity.java Thu Sep 8 20:26:11
2011
@@ -27,8 +27,6 @@
import java.util.Date;
import java.util.Iterator;

-import org.adw.launcher2.R;
-
import android.app.Activity;
import android.app.Dialog;
import android.app.ProgressDialog;
@@ -63,6 +61,7 @@
import android.widget.Toast;

import com.ada.apps.Res;
+import com.ada.desks.R;
import com.bwx.bequick.flashlight.LedFlashlightReceiver;
import com.bwx.bequick.flashlight.ScreenLightActivity;
import com.bwx.bequick.fwk.Setting;
=======================================
--- /adw/src/com/bwx/bequick/handlers/VolumeDialog.java Thu Sep 8 18:45:50
2011
+++ /adw/src/com/bwx/bequick/handlers/VolumeDialog.java Thu Sep 8 20:26:11
2011
@@ -16,8 +16,6 @@

package com.bwx.bequick.handlers;

-import org.adw.launcher2.R;
-
import android.app.Activity;
import android.app.Dialog;
import android.content.DialogInterface;
@@ -37,6 +35,7 @@
import android.widget.Toast;

import com.ada.apps.Res;
+import com.ada.desks.R;
import com.bwx.bequick.Constants;
import com.bwx.bequick.MainSettingsActivity;

=======================================
--- /adw/src/org/adw/launcher2/Launcher.java Thu Sep 8 18:45:50 2011
+++ /adw/src/org/adw/launcher2/Launcher.java Thu Sep 8 20:26:11 2011
@@ -34,11 +34,8 @@
import org.adw.launcher2.quickactionbar.ActionItem;
import org.adw.launcher2.quickactionbar.QuickAction;
import org.adw.launcher2.settings.LauncherSettings;
-import org.adw.launcher2.settings.Preferences;
import org.adw.launcher2.settings.LauncherSettings.Favorites;
-
-import com.ada.apps.Res;
-import com.bwx.bequick.ShowSettingsActivity;
+import org.adw.launcher2.settings.Preferences;

import android.app.Activity;
import android.app.AlertDialog;
@@ -55,8 +52,8 @@
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
-import android.content.IntentFilter;
import android.content.Intent.ShortcutIconResource;
+import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.content.pm.ProviderInfo;
import android.content.pm.ResolveInfo;
@@ -89,9 +86,9 @@
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
-import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
+import android.view.ViewGroup;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.ImageView;
@@ -100,6 +97,10 @@
import android.widget.TextView;
import android.widget.Toast;

+import com.ada.apps.Res;
+import com.ada.desks.R;
+import com.bwx.bequick.ShowSettingsActivity;
+

/**
* Default launcher application.

Reply all
Reply to author
Forward
0 new messages