Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Commit cc04ede

Browse files
authored
Add files via upload
1 parent ef20d03 commit cc04ede

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

AnimationDialog/src/main/java/com/example/animationdialog/AnimationDialog.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.animationdialogexample;
1+
package com.example.animationdialog;
22

33

44
import android.app.Dialog;
@@ -12,7 +12,6 @@
1212
import android.view.Window;
1313
import android.widget.Button;
1414
import android.widget.ImageView;
15-
import android.widget.LinearLayout;
1615
import android.widget.RelativeLayout;
1716
import android.widget.TextView;
1817

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@
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>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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>

0 commit comments

Comments
 (0)