├── .DS_Store ├── .gitignore ├── CommentWithReplyList ├── .gitignore ├── .idea │ ├── dictionaries │ │ └── moos.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── moos │ │ │ └── example │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── moos │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ ├── adapter │ │ │ │ └── CommentExpandAdapter.java │ │ │ │ ├── bean │ │ │ │ ├── CommentBean.java │ │ │ │ ├── CommentDetailBean.java │ │ │ │ └── ReplyDetailBean.java │ │ │ │ └── view │ │ │ │ └── CommentExpandableListView.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── icon_collect.png │ │ │ ├── icon_comment_like.png │ │ │ ├── icon_focus.png │ │ │ ├── icon_work_like.png │ │ │ ├── teaser.png │ │ │ ├── user_logo.jpg │ │ │ └── user_other.jpg │ │ │ ├── drawable │ │ │ ├── comment_bt_selector.xml │ │ │ ├── comment_dialog_et_selector.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── comment_dialog_layout.xml │ │ │ ├── comment_item_layout.xml │ │ │ └── comment_reply_item_layout.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── moos │ │ └── example │ │ └── ExampleUnitTest.java ├── art │ └── comment_sample.gif ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/.gitignore -------------------------------------------------------------------------------- /CommentWithReplyList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.gitignore -------------------------------------------------------------------------------- /CommentWithReplyList/.idea/dictionaries/moos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.idea/dictionaries/moos.xml -------------------------------------------------------------------------------- /CommentWithReplyList/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.idea/gradle.xml -------------------------------------------------------------------------------- /CommentWithReplyList/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.idea/misc.xml -------------------------------------------------------------------------------- /CommentWithReplyList/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.idea/modules.xml -------------------------------------------------------------------------------- /CommentWithReplyList/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CommentWithReplyList/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/build.gradle -------------------------------------------------------------------------------- /CommentWithReplyList/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/proguard-rules.pro -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/androidTest/java/com/moos/example/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/androidTest/java/com/moos/example/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/MainActivity.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/adapter/CommentExpandAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/adapter/CommentExpandAdapter.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/bean/CommentBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/bean/CommentBean.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/bean/CommentDetailBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/bean/CommentDetailBean.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/bean/ReplyDetailBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/bean/ReplyDetailBean.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/java/com/moos/example/view/CommentExpandableListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/java/com/moos/example/view/CommentExpandableListView.java -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_collect.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_comment_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_comment_like.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_focus.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_work_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/icon_work_like.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/teaser.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/user_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/user_logo.jpg -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable-xhdpi/user_other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable-xhdpi/user_other.jpg -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable/comment_bt_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable/comment_bt_selector.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable/comment_dialog_et_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable/comment_dialog_et_selector.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/layout/comment_dialog_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/layout/comment_dialog_layout.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/layout/comment_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/layout/comment_item_layout.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/layout/comment_reply_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/layout/comment_reply_item_layout.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /CommentWithReplyList/app/src/test/java/com/moos/example/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/app/src/test/java/com/moos/example/ExampleUnitTest.java -------------------------------------------------------------------------------- /CommentWithReplyList/art/comment_sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/art/comment_sample.gif -------------------------------------------------------------------------------- /CommentWithReplyList/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/build.gradle -------------------------------------------------------------------------------- /CommentWithReplyList/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/gradle.properties -------------------------------------------------------------------------------- /CommentWithReplyList/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CommentWithReplyList/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CommentWithReplyList/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/gradlew -------------------------------------------------------------------------------- /CommentWithReplyList/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/CommentWithReplyList/gradlew.bat -------------------------------------------------------------------------------- /CommentWithReplyList/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/CommentReplyComponent/HEAD/README.md --------------------------------------------------------------------------------