diff options
Diffstat (limited to 'core')
21 files changed, 21 insertions, 96 deletions
| diff --git a/core/java/android/app/SearchDialog.java b/core/java/android/app/SearchDialog.java index 6ddf50f..6fe4896 100644 --- a/core/java/android/app/SearchDialog.java +++ b/core/java/android/app/SearchDialog.java @@ -33,7 +33,6 @@ import android.content.pm.PackageManager.NameNotFoundException;  import android.content.res.Configuration;  import android.content.res.Resources;  import android.database.Cursor; -import android.graphics.drawable.AnimationDrawable;  import android.graphics.drawable.Drawable;  import android.net.Uri;  import android.os.Bundle; @@ -107,7 +106,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS      private Button mGoButton;      private ImageButton mVoiceButton;      private View mSearchPlate; -    private AnimationDrawable mWorkingSpinner; +    private Drawable mWorkingSpinner;      // interaction with searchable application      private SearchableInfo mSearchable; @@ -188,7 +187,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS          mGoButton = (Button) findViewById(com.android.internal.R.id.search_go_btn);          mVoiceButton = (ImageButton) findViewById(com.android.internal.R.id.search_voice_btn);          mSearchPlate = findViewById(com.android.internal.R.id.search_plate); -        mWorkingSpinner = (AnimationDrawable) getContext().getResources(). +        mWorkingSpinner = getContext().getResources().                  getDrawable(com.android.internal.R.drawable.search_spinner);          // attach listeners @@ -423,11 +422,11 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS          if (working) {              mSearchAutoComplete.setCompoundDrawablesWithIntrinsicBounds(                      null, null, mWorkingSpinner, null); -            mWorkingSpinner.start(); +//            mWorkingSpinner.start();          } else {              mSearchAutoComplete.setCompoundDrawablesWithIntrinsicBounds(                      null, null, null, null); -            mWorkingSpinner.stop(); +//            mWorkingSpinner.stop();          }      } @@ -601,7 +600,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS                      mSearchPlate.getPaddingBottom());          } else {              PackageManager pm = getContext().getPackageManager(); -            Drawable icon = null; +            Drawable icon;              try {                  ActivityInfo info = pm.getActivityInfo(mLaunchComponent, 0);                  icon = pm.getApplicationIcon(info.applicationInfo); diff --git a/core/res/res/drawable/progress.xml b/core/res/res/drawable/progress.xml deleted file mode 100644 index d270520..0000000 --- a/core/res/res/drawable/progress.xml +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* //device/apps/common/res/drawable/progress.xml -** -** Copyright 2007, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License");  -** you may not use this file except in compliance with the License.  -** You may obtain a copy of the License at  -** -**     http://www.apache.org/licenses/LICENSE-2.0  -** -** Unless required by applicable law or agreed to in writing, software  -** distributed under the License is distributed on an "AS IS" BASIS,  -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  -** See the License for the specific language governing permissions and  -** limitations under the License. -*/ ---> - -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> -    <item android:drawable="@android:drawable/progress_circular_background" /> -    <item> -        <shape android:shape="ring" -               android:innerRadiusRatio="3.4" -               android:thicknessRatio="6.0"> -            <gradient -                   android:useLevel="true" -                   android:type="sweep" -                   android:startColor="#ff000000" -                   android:endColor="#ffffffff" /> -        </shape> -    </item> -    <item> -        <rotate -            android:pivotX="50%" android:pivotY="50%" -            android:fromDegrees="0" android:toDegrees="360" -            android:drawable="@android:drawable/progress_particle" /> -    </item> -</layer-list> diff --git a/core/res/res/drawable/progress_circular_background.png b/core/res/res/drawable/progress_circular_background.pngBinary files differ deleted file mode 100644 index 7c637fd..0000000 --- a/core/res/res/drawable/progress_circular_background.png +++ /dev/null diff --git a/core/res/res/drawable/progress_circular_background_small.png b/core/res/res/drawable/progress_circular_background_small.pngBinary files differ deleted file mode 100644 index 6b8ba9b..0000000 --- a/core/res/res/drawable/progress_circular_background_small.png +++ /dev/null diff --git a/core/res/res/drawable/progress_circular_indeterminate.png b/core/res/res/drawable/progress_circular_indeterminate.pngBinary files differ deleted file mode 100644 index 125a264..0000000 --- a/core/res/res/drawable/progress_circular_indeterminate.png +++ /dev/null diff --git a/core/res/res/drawable/progress_indeterminate.xml b/core/res/res/drawable/progress_indeterminate.xml deleted file mode 100644 index 1bf715e..0000000 --- a/core/res/res/drawable/progress_indeterminate.xml +++ /dev/null @@ -1,32 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* //device/apps/common/res/drawable/progress.xml -** -** Copyright 2007, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License");  -** you may not use this file except in compliance with the License.  -** You may obtain a copy of the License at  -** -**     http://www.apache.org/licenses/LICENSE-2.0  -** -** Unless required by applicable law or agreed to in writing, software  -** distributed under the License is distributed on an "AS IS" BASIS,  -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  -** See the License for the specific language governing permissions and  -** limitations under the License. -*/ ---> - -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> -    <item -        android:drawable="@android:drawable/progress_circular_background" /> - -    <item><rotate -        android:pivotX="50%" -        android:pivotY="50%" -        android:fromDegrees="0" -        android:toDegrees="360" -        android:drawable="@android:drawable/progress_circular_indeterminate" /> -    </item> -</layer-list> diff --git a/core/res/res/drawable/progress_particle.png b/core/res/res/drawable/progress_particle.pngBinary files differ deleted file mode 100644 index 9160108..0000000 --- a/core/res/res/drawable/progress_particle.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner.xml b/core/res/res/drawable/search_spinner.xml index 34c163d..31a77c3 100644 --- a/core/res/res/drawable/search_spinner.xml +++ b/core/res/res/drawable/search_spinner.xml @@ -2,7 +2,7 @@  <!--  /*  ** -** Copyright 2008, The Android Open Source Project +** Copyright 2009, The Android Open Source Project  **  ** Licensed under the Apache License, Version 2.0 (the "License");   ** you may not use this file except in compliance with the License.  @@ -17,20 +17,9 @@  ** limitations under the License.  */  --> -<animation-list -        xmlns:android="http://schemas.android.com/apk/res/android" -        android:oneshot="false"> -    <item android:drawable="@drawable/search_spinner_anim1" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim2" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim3" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim4" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim5" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim6" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim7" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim8" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim9" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim10" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim11" android:duration="150" /> -    <item android:drawable="@drawable/search_spinner_anim12" android:duration="150" /> -</animation-list> - +<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android" +    android:drawable="@drawable/spinner_black_20" +    android:pivotX="50%" +    android:pivotY="50%" +    android:framesCount="12" +    android:frameDuration="100" /> diff --git a/core/res/res/drawable/search_spinner_anim10.png b/core/res/res/drawable/search_spinner_anim10.pngBinary files differ deleted file mode 100755 index 9611d97..0000000 --- a/core/res/res/drawable/search_spinner_anim10.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim11.png b/core/res/res/drawable/search_spinner_anim11.pngBinary files differ deleted file mode 100755 index 4261704..0000000 --- a/core/res/res/drawable/search_spinner_anim11.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim12.png b/core/res/res/drawable/search_spinner_anim12.pngBinary files differ deleted file mode 100755 index 0602314..0000000 --- a/core/res/res/drawable/search_spinner_anim12.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim2.png b/core/res/res/drawable/search_spinner_anim2.pngBinary files differ deleted file mode 100755 index 05d58e0..0000000 --- a/core/res/res/drawable/search_spinner_anim2.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim3.png b/core/res/res/drawable/search_spinner_anim3.pngBinary files differ deleted file mode 100755 index 69fa9c1..0000000 --- a/core/res/res/drawable/search_spinner_anim3.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim4.png b/core/res/res/drawable/search_spinner_anim4.pngBinary files differ deleted file mode 100755 index 9201bac..0000000 --- a/core/res/res/drawable/search_spinner_anim4.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim5.png b/core/res/res/drawable/search_spinner_anim5.pngBinary files differ deleted file mode 100755 index f0c7101..0000000 --- a/core/res/res/drawable/search_spinner_anim5.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim6.png b/core/res/res/drawable/search_spinner_anim6.pngBinary files differ deleted file mode 100755 index 99d1d4e..0000000 --- a/core/res/res/drawable/search_spinner_anim6.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim7.png b/core/res/res/drawable/search_spinner_anim7.pngBinary files differ deleted file mode 100755 index 8ca3358..0000000 --- a/core/res/res/drawable/search_spinner_anim7.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim8.png b/core/res/res/drawable/search_spinner_anim8.pngBinary files differ deleted file mode 100755 index 408d723..0000000 --- a/core/res/res/drawable/search_spinner_anim8.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim9.png b/core/res/res/drawable/search_spinner_anim9.pngBinary files differ deleted file mode 100755 index 42a2c65..0000000 --- a/core/res/res/drawable/search_spinner_anim9.png +++ /dev/null diff --git a/core/res/res/drawable/search_spinner_anim1.png b/core/res/res/drawable/spinner_black_20.pngBinary files differ index e55b60d..e55b60d 100755 --- a/core/res/res/drawable/search_spinner_anim1.png +++ b/core/res/res/drawable/spinner_black_20.png diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index e978ef5..d070107 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -2327,6 +2327,15 @@          <attr name="drawable" />      </declare-styleable> +    <declare-styleable name="AnimatedRotateDrawable"> +        <attr name="visible" /> +        <attr name="frameDuration" format="integer" /> +        <attr name="framesCount" format="integer" /> +        <attr name="pivotX" /> +        <attr name="pivotY" /> +        <attr name="drawable" /> +    </declare-styleable> +          <declare-styleable name="InsetDrawable">          <attr name="visible" />          <attr name="drawable" /> | 
