├── .gitignore ├── Pics ├── ScrollingTabs.gif ├── SimpleApp.gif └── SlidingMenu.gif ├── PullToRefreshListView.md ├── PullToRefreshListView ├── .project ├── AndroidManifest.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── indicator_arrow.png │ │ └── loading_logo.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── load_more_footer.xml │ │ └── pull_to_refresh_header.xml │ ├── values-en │ │ └── strings.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── charon │ └── pulltorefreshlistview │ ├── LoadMoreGridView.java │ ├── LoadMoreListView.java │ ├── PullRefreshAndLoadMoreListView.java │ └── PullToRefreshListView.java ├── PullToRefreshListViewDemo ├── .project ├── AndroidManifest.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_loadmore.xml │ │ ├── activity_loadmoregrid.xml │ │ ├── activity_main.xml │ │ ├── activity_pull_and_loadmore.xml │ │ └── activity_pulltorefresh.xml │ ├── menu │ │ └── main.xml │ ├── values-en │ │ └── strings.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── charon │ └── pulltorefresh │ └── demo │ ├── LoadMoreActivity.java │ ├── LoadMoreGridActivity.java │ ├── MainActivity.java │ ├── PullAndLoadMoreActivity.java │ └── PullToRefreshActivity.java ├── README.md ├── README_ScrollingTabs.md ├── README_SlidingMenu.md ├── ScrollingTabs.md ├── ScrollingTabs ├── .gitignore ├── .project ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── project.properties ├── res │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ └── triangle.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── charon │ └── scrollingtabs │ └── view │ ├── ScrollingTabs.java │ └── TriangleScrollingTabs.java ├── ScrollingTabsDemo ├── .gitignore ├── .project ├── AndroidManifest.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_scrollingtabs.xml │ │ ├── activity_trianglescrollingtabs.xml │ │ ├── tab.xml │ │ └── triangletab.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── charon │ └── scrollingtabsdemo │ ├── MainActivity.java │ ├── ScroolingTabsActivity.java │ └── TriangleScroolingTabsActivity.java ├── SimpleApp ├── .project ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── base_actionbar_bg.9.png │ │ ├── base_main_action_personal_normal.png │ │ ├── biz_news_main_back_normal.png │ │ ├── head_default.jpg │ │ ├── ic_launcher.png │ │ ├── indicator_arrow.png │ │ └── loading_logo.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ └── tab_bg.xml │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_center.xml │ │ ├── fragment_left.xml │ │ ├── fragment_right.xml │ │ ├── frame_center.xml │ │ ├── frame_left.xml │ │ ├── frame_right.xml │ │ ├── item_lv_center.xml │ │ ├── load_more_footer.xml │ │ ├── lv_pager_center.xml │ │ ├── pull_to_refresh_header.xml │ │ └── tab_center.xml │ ├── menu │ │ └── main.xml │ └── values │ │ ├── color.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── charon │ └── simpleapp │ ├── MainActivity.java │ ├── base │ └── BaseActivity.java │ └── fragment │ ├── CenterFragment.java │ ├── LeftFragment.java │ ├── PagerFragment.java │ └── RightFragment.java ├── SlidingMenu.md ├── SlidingMenu ├── .gitignore ├── .project ├── AndroidManifest.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── charon │ └── slidingmenu │ └── view │ └── SlidingMenu.java └── SlidingMenuDemo ├── .project ├── AndroidManifest.xml ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── base_actionbar_bg.9.png │ ├── base_main_action_personal_normal.png │ ├── biz_news_main_back_normal.png │ ├── head_default.jpg │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ ├── fragment_center.xml │ ├── fragment_left.xml │ ├── fragment_right.xml │ ├── frame_center.xml │ ├── frame_left.xml │ └── frame_right.xml ├── menu │ └── main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── charon └── slidingmenudemo ├── MainActivity.java └── fragment ├── CenterFragment.java ├── LeftFragment.java ├── PagerFragment.java └── RightFragment.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /Pics/ScrollingTabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/Pics/ScrollingTabs.gif -------------------------------------------------------------------------------- /Pics/SimpleApp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/Pics/SimpleApp.gif -------------------------------------------------------------------------------- /Pics/SlidingMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/Pics/SlidingMenu.gif -------------------------------------------------------------------------------- /PullToRefreshListView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView.md -------------------------------------------------------------------------------- /PullToRefreshListView/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/.project -------------------------------------------------------------------------------- /PullToRefreshListView/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/AndroidManifest.xml -------------------------------------------------------------------------------- /PullToRefreshListView/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/project.properties -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-hdpi/loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-hdpi/loading_logo.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListView/res/layout/load_more_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/layout/load_more_footer.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/layout/pull_to_refresh_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/layout/pull_to_refresh_header.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values-en/strings.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values-v11/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values-v14/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values/strings.xml -------------------------------------------------------------------------------- /PullToRefreshListView/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/res/values/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListView/src/com/charon/pulltorefreshlistview/LoadMoreGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/src/com/charon/pulltorefreshlistview/LoadMoreGridView.java -------------------------------------------------------------------------------- /PullToRefreshListView/src/com/charon/pulltorefreshlistview/LoadMoreListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/src/com/charon/pulltorefreshlistview/LoadMoreListView.java -------------------------------------------------------------------------------- /PullToRefreshListView/src/com/charon/pulltorefreshlistview/PullRefreshAndLoadMoreListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/src/com/charon/pulltorefreshlistview/PullRefreshAndLoadMoreListView.java -------------------------------------------------------------------------------- /PullToRefreshListView/src/com/charon/pulltorefreshlistview/PullToRefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListView/src/com/charon/pulltorefreshlistview/PullToRefreshListView.java -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/.project -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/project.properties -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/layout/activity_loadmore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/layout/activity_loadmore.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/layout/activity_loadmoregrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/layout/activity_loadmoregrid.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/layout/activity_pull_and_loadmore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/layout/activity_pull_and_loadmore.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/layout/activity_pulltorefresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/layout/activity_pulltorefresh.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/menu/main.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values-en/strings.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values/dimens.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values/strings.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/res/values/styles.xml -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/LoadMoreActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/LoadMoreActivity.java -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/LoadMoreGridActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/LoadMoreGridActivity.java -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/MainActivity.java -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/PullAndLoadMoreActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/PullAndLoadMoreActivity.java -------------------------------------------------------------------------------- /PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/PullToRefreshActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/PullToRefreshListViewDemo/src/com/charon/pulltorefresh/demo/PullToRefreshActivity.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/README.md -------------------------------------------------------------------------------- /README_ScrollingTabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/README_ScrollingTabs.md -------------------------------------------------------------------------------- /README_SlidingMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/README_SlidingMenu.md -------------------------------------------------------------------------------- /ScrollingTabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs.md -------------------------------------------------------------------------------- /ScrollingTabs/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /assets 3 | /bin 4 | -------------------------------------------------------------------------------- /ScrollingTabs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/.project -------------------------------------------------------------------------------- /ScrollingTabs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/AndroidManifest.xml -------------------------------------------------------------------------------- /ScrollingTabs/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/libs/android-support-v4.jar -------------------------------------------------------------------------------- /ScrollingTabs/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/project.properties -------------------------------------------------------------------------------- /ScrollingTabs/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabs/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabs/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabs/res/drawable/triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/drawable/triangle.xml -------------------------------------------------------------------------------- /ScrollingTabs/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /ScrollingTabs/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /ScrollingTabs/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/values-v11/styles.xml -------------------------------------------------------------------------------- /ScrollingTabs/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/values-v14/styles.xml -------------------------------------------------------------------------------- /ScrollingTabs/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/res/values/strings.xml -------------------------------------------------------------------------------- /ScrollingTabs/src/com/charon/scrollingtabs/view/ScrollingTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/src/com/charon/scrollingtabs/view/ScrollingTabs.java -------------------------------------------------------------------------------- /ScrollingTabs/src/com/charon/scrollingtabs/view/TriangleScrollingTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabs/src/com/charon/scrollingtabs/view/TriangleScrollingTabs.java -------------------------------------------------------------------------------- /ScrollingTabsDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/.gitignore -------------------------------------------------------------------------------- /ScrollingTabsDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/.project -------------------------------------------------------------------------------- /ScrollingTabsDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/project.properties -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/layout/activity_scrollingtabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/layout/activity_scrollingtabs.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/layout/activity_trianglescrollingtabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/layout/activity_trianglescrollingtabs.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/layout/tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/layout/tab.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/layout/triangletab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/layout/triangletab.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/menu/main.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values/dimens.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values/strings.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/res/values/styles.xml -------------------------------------------------------------------------------- /ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/MainActivity.java -------------------------------------------------------------------------------- /ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/ScroolingTabsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/ScroolingTabsActivity.java -------------------------------------------------------------------------------- /ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/TriangleScroolingTabsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/ScrollingTabsDemo/src/com/charon/scrollingtabsdemo/TriangleScroolingTabsActivity.java -------------------------------------------------------------------------------- /SimpleApp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/.project -------------------------------------------------------------------------------- /SimpleApp/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/AndroidManifest.xml -------------------------------------------------------------------------------- /SimpleApp/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/libs/android-support-v4.jar -------------------------------------------------------------------------------- /SimpleApp/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/project.properties -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/base_actionbar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/base_actionbar_bg.9.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/base_main_action_personal_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/base_main_action_personal_normal.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/biz_news_main_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/biz_news_main_back_normal.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/head_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/head_default.jpg -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-hdpi/loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-hdpi/loading_logo.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleApp/res/drawable/tab_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/drawable/tab_bg.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/fragment_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/fragment_center.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/fragment_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/fragment_left.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/fragment_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/fragment_right.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/frame_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/frame_center.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/frame_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/frame_left.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/frame_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/frame_right.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/item_lv_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/item_lv_center.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/load_more_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/load_more_footer.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/lv_pager_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/lv_pager_center.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/pull_to_refresh_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/pull_to_refresh_header.xml -------------------------------------------------------------------------------- /SimpleApp/res/layout/tab_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/layout/tab_center.xml -------------------------------------------------------------------------------- /SimpleApp/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/menu/main.xml -------------------------------------------------------------------------------- /SimpleApp/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/values/color.xml -------------------------------------------------------------------------------- /SimpleApp/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/values/dimens.xml -------------------------------------------------------------------------------- /SimpleApp/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/values/strings.xml -------------------------------------------------------------------------------- /SimpleApp/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/res/values/styles.xml -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/MainActivity.java -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/base/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/base/BaseActivity.java -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/fragment/CenterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/fragment/CenterFragment.java -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/fragment/LeftFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/fragment/LeftFragment.java -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/fragment/PagerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/fragment/PagerFragment.java -------------------------------------------------------------------------------- /SimpleApp/src/com/charon/simpleapp/fragment/RightFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SimpleApp/src/com/charon/simpleapp/fragment/RightFragment.java -------------------------------------------------------------------------------- /SlidingMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu.md -------------------------------------------------------------------------------- /SlidingMenu/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /assets 3 | /bin 4 | -------------------------------------------------------------------------------- /SlidingMenu/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/.project -------------------------------------------------------------------------------- /SlidingMenu/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/AndroidManifest.xml -------------------------------------------------------------------------------- /SlidingMenu/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/project.properties -------------------------------------------------------------------------------- /SlidingMenu/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenu/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenu/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenu/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenu/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/menu/main.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values-v11/styles.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values-v14/styles.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values/dimens.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values/strings.xml -------------------------------------------------------------------------------- /SlidingMenu/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/res/values/styles.xml -------------------------------------------------------------------------------- /SlidingMenu/src/com/charon/slidingmenu/view/SlidingMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenu/src/com/charon/slidingmenu/view/SlidingMenu.java -------------------------------------------------------------------------------- /SlidingMenuDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/.project -------------------------------------------------------------------------------- /SlidingMenuDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /SlidingMenuDemo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/proguard-project.txt -------------------------------------------------------------------------------- /SlidingMenuDemo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/project.properties -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-hdpi/base_actionbar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-hdpi/base_actionbar_bg.9.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-hdpi/base_main_action_personal_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-hdpi/base_main_action_personal_normal.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-hdpi/biz_news_main_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-hdpi/biz_news_main_back_normal.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-hdpi/head_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-hdpi/head_default.jpg -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/fragment_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/fragment_center.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/fragment_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/fragment_left.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/fragment_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/fragment_right.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/frame_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/frame_center.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/frame_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/frame_left.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/layout/frame_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/layout/frame_right.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/menu/main.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values/dimens.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values/strings.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/res/values/styles.xml -------------------------------------------------------------------------------- /SlidingMenuDemo/src/com/charon/slidingmenudemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/src/com/charon/slidingmenudemo/MainActivity.java -------------------------------------------------------------------------------- /SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/CenterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/CenterFragment.java -------------------------------------------------------------------------------- /SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/LeftFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/LeftFragment.java -------------------------------------------------------------------------------- /SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/PagerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/PagerFragment.java -------------------------------------------------------------------------------- /SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/RightFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharonChui/PullRefresh-SlidingMenu/HEAD/SlidingMenuDemo/src/com/charon/slidingmenudemo/fragment/RightFragment.java --------------------------------------------------------------------------------