Showing
8 changed files
with
16 additions
and
3 deletions
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <project version="4"> | 2 | <project version="4"> |
3 | - <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> | 3 | + <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="JDK" project-jdk-type="JavaSDK"> |
4 | <output url="file://$PROJECT_DIR$/build/classes" /> | 4 | <output url="file://$PROJECT_DIR$/build/classes" /> |
5 | </component> | 5 | </component> |
6 | <component name="ProjectType"> | 6 | <component name="ProjectType"> | ... | ... |
No preview for this file type
1 | +[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -2,6 +2,7 @@ | ... | @@ -2,6 +2,7 @@ |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 | xmlns:tools="http://schemas.android.com/tools" | 3 | xmlns:tools="http://schemas.android.com/tools" |
4 | package="com.example.dataextraction"> | 4 | package="com.example.dataextraction"> |
5 | + | ||
5 | <uses-permission | 6 | <uses-permission |
6 | android:name="android.permission.PACKAGE_USAGE_STATS" | 7 | android:name="android.permission.PACKAGE_USAGE_STATS" |
7 | tools:ignore="ProtectedPermissions" /> | 8 | tools:ignore="ProtectedPermissions" /> |
... | @@ -26,6 +27,7 @@ | ... | @@ -26,6 +27,7 @@ |
26 | android:roundIcon="@mipmap/ic_launcher_round" | 27 | android:roundIcon="@mipmap/ic_launcher_round" |
27 | android:supportsRtl="true" | 28 | android:supportsRtl="true" |
28 | android:theme="@style/AppTheme"> | 29 | android:theme="@style/AppTheme"> |
30 | + <activity android:name=".LoadingActivity"></activity> | ||
29 | <activity android:name=".MainActivity"> | 31 | <activity android:name=".MainActivity"> |
30 | <intent-filter> | 32 | <intent-filter> |
31 | <action android:name="android.intent.action.MAIN" /> | 33 | <action android:name="android.intent.action.MAIN" /> | ... | ... |
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + android:orientation="vertical"> | ||
6 | + <TextView | ||
7 | + android:id="@+id/textView" | ||
8 | + android:layout_width="match_parent" | ||
9 | + android:layout_height="wrap_content" | ||
10 | + android:text="CapstoneDesign2" /> | ||
11 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -11,8 +11,7 @@ | ... | @@ -11,8 +11,7 @@ |
11 | android:layout_width="200dp" | 11 | android:layout_width="200dp" |
12 | android:layout_height="60dp" | 12 | android:layout_height="60dp" |
13 | android:layout_gravity="center" | 13 | android:layout_gravity="center" |
14 | - android:onClick="button1" | 14 | + android:text="데이터추출 완료" |
15 | - android:text="데이터추출" | ||
16 | app:layout_constraintBottom_toBottomOf="parent" | 15 | app:layout_constraintBottom_toBottomOf="parent" |
17 | app:layout_constraintEnd_toEndOf="parent" | 16 | app:layout_constraintEnd_toEndOf="parent" |
18 | app:layout_constraintHorizontal_bias="0.497" | 17 | app:layout_constraintHorizontal_bias="0.497" | ... | ... |
-
Please register or login to post a comment