File tree Expand file tree Collapse file tree
java/com/clock/study/activity Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 android : name =" .activity.PhotoPreviewActivity"
3030 android : label =" @string/photo_preview"
3131 android : screenOrientation =" portrait" />
32- <activity android : name =" .activity.AndroidAnimActivity " ></activity >
32+ <activity android : name =" .activity.AnimationActivity " ></activity >
3333 </application >
3434
3535</manifest >
Original file line number Diff line number Diff line change 1717/**
1818 * Android动画效果实现复习
1919 */
20- public class AndroidAnimActivity extends AppCompatActivity implements View .OnClickListener {
20+ public class AnimationActivity extends AppCompatActivity implements View .OnClickListener {
2121
2222 private Button mBtnTranslate ;
2323 private Button mBtnScale ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public void onClick(View v) {
2525 Intent takePhotoIntent = new Intent (this , CapturePhotoActivity .class );
2626 startActivity (takePhotoIntent );
2727 } else if (viewId == R .id .btn_android_anim ) {
28- Intent androidAnimIntent = new Intent (this , AndroidAnimActivity .class );
28+ Intent androidAnimIntent = new Intent (this , AnimationActivity .class );
2929 startActivity (androidAnimIntent );
3030 }
3131 }
You can’t perform that action at this time.
0 commit comments