Skip to content

Commit

Permalink
目录结构修改
Browse files Browse the repository at this point in the history
  • Loading branch information
ximsfei committed Sep 3, 2017
1 parent de7881a commit 86b4ed3
Show file tree
Hide file tree
Showing 380 changed files with 50 additions and 45 deletions.
16 changes: 9 additions & 7 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 9 additions & 7 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
[![v1.4.5](https://img.shields.io/badge/androidautolayout-v1.4.5-green.svg)](http://jcenter.bintray.com/skin/support/androidautolayout/1.4.5/)

* [介绍](#介绍)
* [更新日志](ChangeLog.md)
* [skin-support 更新日志](https://github.com/ximsfei/Android-skin-support/blob/master/ChangeLog.md#skin-support-基础控件-支持)
* [skin-support-design 更新日志](https://github.com/ximsfei/Android-skin-support/blob/master/ChangeLog.md#skin-support-design-material-design-支持)
* [skin-support-cardview 更新日志](https://github.com/ximsfei/Android-skin-support/blob/master/ChangeLog.md#skin-support-cardview-cardview-支持)
* [skin-support-constraint-layout 更新日志](https://github.com/ximsfei/Android-skin-support/blob/master/ChangeLog.md#skin-support-constraint-layout-constraintlayout-支持)
* [更新日志](docs/ChangeLog.md)
* [skin-support 更新日志](docs/ChangeLog.md#skin-support-基础控件-支持)
* [skin-support-design 更新日志](docs/ChangeLog.md#skin-support-design-material-design-支持)
* [skin-support-cardview 更新日志](docs/ChangeLog.md#skin-support-cardview-cardview-支持)
* [skin-support-constraint-layout 更新日志](docs/ChangeLog.md#skin-support-constraint-layout-constraintlayout-支持)
* [Demo](#demo)
* [框架用法](#用法)
* [导入](#导入)
Expand All @@ -31,10 +31,10 @@
* [加载皮肤插件](#加载皮肤插件)
* [自定义加载策略](#自定义加载策略)
* [AlertDialog换肤](docs/AlertDialog.md)
* [第三方控件适配库](ThirdPartSupport.md)
* [hdodenhof/CircleImageView](https://github.com/ximsfei/Android-skin-support/blob/master/ThirdPartSupport.md#hdodenhofcircleimageview)
* [H07000223/FlycoTabLayout](https://github.com/ximsfei/Android-skin-support/blob/master/ThirdPartSupport.md#h07000223flycotablayout)
* [hongyangAndroid/AndroidAutoLayout](https://github.com/ximsfei/Android-skin-support/blob/master/ThirdPartSupport.md#hongyangandroidandroidautolayout)
* [第三方控件适配库](docs/ThirdPartSupport.md)
* [hdodenhof/CircleImageView](docs/ThirdPartSupport.md#hdodenhofcircleimageview)
* [H07000223/FlycoTabLayout](docs/ThirdPartSupport.md#h07000223flycotablayout)
* [hongyangAndroid/AndroidAutoLayout](docs/ThirdPartSupport.md#hongyangandroidandroidautolayout)
* [LICENSE](#license-mit)

## 介绍
Expand Down Expand Up @@ -144,17 +144,17 @@ SkinCompatManager.getInstance().restoreDefaultTheme();

* 自定义View可以直接继承自SkinCompatView, SkinCompatLinearLayout等已有控件

eg: [CustomTextView](skin-app/src/main/java/com/ximsfei/skindemo/widget/CustomTextView.java)
eg: [CustomTextView](demo/skin-app/src/main/java/com/ximsfei/skindemo/widget/CustomTextView.java)

* 不想继承自已有控件

eg: [CustomTextView2](skin-app/src/main/java/com/ximsfei/skindemo/widget/CustomTextView2.java)
eg: [CustomTextView2](demo/skin-app/src/main/java/com/ximsfei/skindemo/widget/CustomTextView2.java)

* 需要换肤自定义属性

// 需要换肤AutoCompleteTextView的R.attr.popupBackground属性

eg: [SkinCompatAutoCompleteTextView](skin-support/src/main/java/skin/support/widget/SkinCompatAutoCompleteTextView.java)
eg: [SkinCompatAutoCompleteTextView](android-support/skin-support/src/main/java/skin/support/widget/SkinCompatAutoCompleteTextView.java)

* 需要使用第三方库控件怎么办

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:cardview-v7:25.1.0'
compile project(':skin-support')
compile project(':android-support:skin-support')
}

ext {
Expand All @@ -31,4 +31,4 @@ ext {
descContent="CardView-v7 换肤支持包"
}

apply from: '../publishing_maven.gradle'
apply from: '../../publishing_maven.gradle'
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile project(':skin-support')
compile project(':android-support:skin-support')
}

ext {
Expand All @@ -30,4 +30,4 @@ ext {
descContent = 'ConstraintLayout控件换肤支持包'
}

apply from: '../publishing_maven.gradle'
apply from: '../../publishing_maven.gradle'
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile project(':skin-support')
compile project(':android-support:skin-support')
}

ext {
Expand All @@ -31,4 +31,4 @@ ext {
descContent = 'material design控件换肤支持包'
}

apply from: '../publishing_maven.gradle'
apply from: '../../publishing_maven.gradle'
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ ext {
descContent = 'skin-support 基础控件换肤支持包'
}

apply from: '../publishing_maven.gradle'
apply from: '../../publishing_maven.gradle'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions skin-app/build.gradle → demo/skin-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:appcompat-v7:25.1.0'
compile project(':skin-support')
compile project(':android-support:skin-support')
// compile 'skin.support:skin-support:2.1.3'

compile 'com.android.support:design:25.1.0'
compile project(':skin-support-design')
compile project(':android-support:skin-support-design')
// compile 'skin.support:skin-support-design:1.2.3'

compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile project(':skin-support-constraint-layout')
compile project(':android-support:skin-support-constraint-layout')
// compile 'skin.support:skin-support-constraint-layout:1.0.2'

compile 'com.android.support:cardview-v7:25.1.0'
compile project(':skin-support-cardview')
compile project(':android-support:skin-support-cardview')
// compile 'skin.support:skin-support-cardview:1.2.0'

// 第三方控件库换肤支持
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile project(':skin-support')
compile project(':android-support:skin-support')
// compile 'skin.support:skin-support:1.2.3'

compile 'com.zhy:autolayout:1.4.5'
Expand Down
File renamed without changes.
Loading

0 comments on commit 86b4ed3

Please sign in to comment.