Skip to content

Commit 356a7a8

Browse files
author
maqiang
committed
Common Dialog
基于DialgoFragment封装通用Dialog
1 parent 78a8e5d commit 356a7a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2187
-6
lines changed

app/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,6 @@ dependencies {
104104
compile 'com.android.support:support-v4:25.3.1'
105105
compile 'com.github.promeg:tinypinyin:2.0.3'
106106
compile 'com.github.promeg:tinypinyin-lexicons-android-cncity:2.0.3'
107-
testCompile 'junit:junit:4.12'
107+
// testCompile 'junit:junit:4.12'
108+
compile project(':sydialoglib')
108109
}

app/src/main/AndroidManifest.xml

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<uses-permission android:name="android.permission.INTERNET" />
66
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
77
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8-
<!--全屏悬浮窗 需要申请此权限 -->
8+
<!-- 全屏悬浮窗 需要申请此权限 -->
99
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
10+
1011
<application
1112
android:name=".MyApplication"
1213
android:allowBackup="true"
1314
android:icon="@mipmap/android_study"
1415
android:label="@string/app_name"
1516
android:supportsRtl="true"
1617
android:theme="@style/AppTheme">
17-
1818
<meta-data
1919
android:name="UMENG_CHANNEL"
2020
android:value="${UMENG_CHANNEL_VALUE}" />
@@ -131,6 +131,9 @@
131131
<activity
132132
android:name=".popup.WindowManagerActivity"
133133
android:screenOrientation="portrait" />
134+
<activity
135+
android:name=".popup.CommonDialogActivity"
136+
android:screenOrientation="portrait" />
134137
</application>
135138

136139
</manifest>

0 commit comments

Comments
 (0)