Implement all of the infrastructure for configuring wallpapers.

Actually being able to configure a wallpaper relies on additional
work in the launcher and wallpapers that will be in another change.
Also note that this breaks all existing wallpapers, since they now
need to include a meta-data item about themselves.  This also
will be fixed in another change.

Change-Id: I97d2c2bd07237abc32f92b9147c32530a2f73c71
This commit is contained in:
Dianne Hackborn
2009-09-07 00:49:58 -07:00
parent 9c93007bcd
commit eb034652c2
21 changed files with 880 additions and 44 deletions

View File

@@ -40,7 +40,7 @@ import java.io.IOException;
* This class is used to specify meta information of an input method.
*/
public final class InputMethodInfo implements Parcelable {
static final String TAG = "InputMethodMetaInfo";
static final String TAG = "InputMethodInfo";
/**
* The Service that implements this input method component.
@@ -244,7 +244,7 @@ public final class InputMethodInfo implements Parcelable {
@Override
public String toString() {
return "InputMethodMetaInfo{" + mId
return "InputMethodInfo{" + mId
+ ", settings: "
+ mSettingsActivityName + "}";
}