This repository was archived by the owner on Jul 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +23
-9
lines changed
AnimationDialog/src/main/java/com/example/animationdialog
java/com/example/animationdialogexample Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1- package com .example .animationdialogexample ;
1+ package com .example .animationdialog ;
22
33
44import android .app .Dialog ;
1212import android .view .Window ;
1313import android .widget .Button ;
1414import android .widget .ImageView ;
15- import android .widget .LinearLayout ;
1615import android .widget .RelativeLayout ;
1716import android .widget .TextView ;
1817
Original file line number Diff line number Diff line change 99 android : roundIcon =" @mipmap/ic_launcher_round"
1010 android : supportsRtl =" true"
1111 android : theme =" @style/AppTheme" >
12- <activity android : name =" .Main2Activity" >
13- <intent-filter >
14- <action android : name =" android.intent.action.MAIN" />
15-
16- <category android : name =" android.intent.category.LAUNCHER" />
17- </intent-filter >
18- </activity >
12+ <activity android : name =" .MainActivity" ></activity >
1913 </application >
2014
2115</manifest >
Original file line number Diff line number Diff line change 1+ package com .example .animationdialogexample ;
2+
3+ import android .os .Bundle ;
4+ import androidx .appcompat .app .AppCompatActivity ;
5+ public class MainActivity extends AppCompatActivity {
6+
7+ @ Override
8+ protected void onCreate (Bundle savedInstanceState ) {
9+ super .onCreate (savedInstanceState );
10+ setContentView (R .layout .activity_main );
11+ }
12+ }
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <androidx .constraintlayout.widget.ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4+ xmlns : tools =" http://schemas.android.com/tools"
5+ android : layout_width =" match_parent"
6+ android : layout_height =" match_parent"
7+ tools : context =" .MainActivity" >
8+
9+ </androidx .constraintlayout.widget.ConstraintLayout>
You can’t perform that action at this time.
0 commit comments