Skip to content

Commit

Permalink
Common Dialog
Browse files Browse the repository at this point in the history
基于DialgoFragment封装通用Dialog
  • Loading branch information
maqiang committed Sep 19, 2018
1 parent 78a8e5d commit 356a7a8
Show file tree
Hide file tree
Showing 44 changed files with 2,187 additions and 6 deletions.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,6 @@ dependencies {
compile 'com.android.support:support-v4:25.3.1'
compile 'com.github.promeg:tinypinyin:2.0.3'
compile 'com.github.promeg:tinypinyin-lexicons-android-cncity:2.0.3'
testCompile 'junit:junit:4.12'
// testCompile 'junit:junit:4.12'
compile project(':sydialoglib')
}
7 changes: 5 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!--全屏悬浮窗 需要申请此权限 -->
<!-- 全屏悬浮窗 需要申请此权限 -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/android_study"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<meta-data
android:name="UMENG_CHANNEL"
android:value="${UMENG_CHANNEL_VALUE}" />
Expand Down Expand Up @@ -131,6 +131,9 @@
<activity
android:name=".popup.WindowManagerActivity"
android:screenOrientation="portrait" />
<activity
android:name=".popup.CommonDialogActivity"
android:screenOrientation="portrait" />
</application>

</manifest>
Loading

0 comments on commit 356a7a8

Please sign in to comment.