• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


Commit MetaInfo

Révision1c9f9f1796065582aa915f38a057bfff8b8384f0 (tree)
l'heure2011-01-12 06:16:48
AuteurChet Haase <chet@goog...>
CommiterAndroid Git Automerger

Message de Log

am d8126c7d: All animator resources moved to res/animator

* commit 'd8126c7d899e340c2dba023250a68fed56db7d11':

All animator resources moved to res/animator

Change Summary

Modification

--- a/samples/ApiDemos/src/com/example/android/apis/app/FragmentHideShow.java
+++ b/samples/ApiDemos/src/com/example/android/apis/app/FragmentHideShow.java
@@ -52,8 +52,8 @@ public class FragmentHideShow extends Activity {
5252 button.setOnClickListener(new OnClickListener() {
5353 public void onClick(View v) {
5454 FragmentTransaction ft = getFragmentManager().openTransaction();
55- ft.setCustomAnimations(android.R.anim.animator_fade_in,
56- android.R.anim.animator_fade_out);
55+ ft.setCustomAnimations(android.R.animator.fade_in,
56+ android.R.animator.fade_out);
5757 if (fragment.isHidden()) {
5858 ft.show(fragment);
5959 button.setText("Hide");