├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── yh_dynamic_content_bg1.png │ ├── yh_dynamic_content_bg2.png │ ├── yh_dynamic_item_comment1.png │ ├── yh_dynamic_item_comment2.png │ ├── yh_dynamic_item_more.png │ ├── yh_dynamic_item_scomment1.png │ ├── yh_dynamic_item_scomment2.png │ ├── yh_dynamic_item_szan1.png │ ├── yh_dynamic_item_szan2.png │ ├── yh_dynamic_item_zan1.png │ └── yh_dynamic_item_zan2.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── x_yh_dynamic_content_bg.xml │ ├── x_yh_dynamic_item_commemt.xml │ ├── x_yh_dynamic_item_scommemt.xml │ ├── x_yh_dynamic_item_szan1.xml │ ├── x_yh_dynamic_item_szan2.xml │ ├── x_yh_dynamic_item_zan1.xml │ └── x_yh_dynamic_item_zan2.xml ├── layout │ ├── yh_dynamic_detail.xml │ ├── yh_dynamic_detail_head.xml │ ├── yh_dynamic_detail_list.xml │ ├── yh_dynamic_item.xml │ ├── yh_dynamic_item_commently.xml │ └── yh_dynamic_main.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── myexample └── dynamic ├── activity ├── DynamicActivity.java └── DynamicDetailActivity.java ├── adapter ├── DynamicAdapter.java ├── DynamicCommentAdapter.java └── DynamicPageAdapter.java ├── bean ├── Dynamic.java ├── DynamicComment.java ├── User.java └── UserClickSpan.java ├── fragment └── DynamicDetailFragment.java └── view ├── DynamicDetailHeadView.java └── DynamicItemView.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Custom 2 | _site 3 | 4 | # Ant 5 | MANIFEST.MF 6 | ./*.jar 7 | build.num 8 | build 9 | 10 | # ADT 11 | .settings 12 | local.properties 13 | bin 14 | gen 15 | _layouts 16 | proguard.cfg 17 | 18 | # OSX 19 | .DS_Store 20 | 21 | # Github 22 | gh-pages 23 | 24 | # Gradle 25 | .gradle 26 | build 27 | 28 | # IDEA 29 | *.iml 30 | *.ipr 31 | *.iws 32 | out 33 | .idea 34 | 35 | # Maven 36 | target 37 | release.properties 38 | 39 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Dynamic 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-8 15 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_content_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_content_bg1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_content_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_content_bg2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_comment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_comment1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_comment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_comment2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_more.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_scomment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_scomment1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_scomment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_scomment2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_szan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_szan1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_szan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_szan2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_zan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_zan1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/yh_dynamic_item_zan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xhdpi/yh_dynamic_item_zan2.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djun100/android-source-WeChat-friends/a60906f415c67faeb10cbf76dc5252e957501533/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_content_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_commemt.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_scommemt.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_szan1.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_szan2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_zan1.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/x_yh_dynamic_item_zan2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/layout/yh_dynamic_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/layout/yh_dynamic_detail_head.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 16 | 17 | 21 | 22 | 23 | 26 | 27 | 32 | 33 | 40 | 41 | 48 | 49 | 50 | 51 | 57 | 58 | 59 | 65 | 66 | 73 | 74 | 82 | 83 | 84 | 85 | 92 | 93 | 98 | 99 | 107 | 108 | 109 | 118 | 119 | 120 | 127 | 128 | 132 | 133 |