├── AnimatorMenu ├── .classpath ├── .project ├── AndroidManifest.xml ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── center_icon.png │ │ ├── ic_launcher.png │ │ ├── qf_search2.9.png │ │ └── qf_trig2.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── home_bottom_tab_bg.png │ │ ├── home_icon_normal.png │ │ ├── home_icon_selected.png │ │ ├── ic_launcher.png │ │ ├── image_a.png │ │ ├── image_a_content.png │ │ ├── image_a_icon.png │ │ ├── image_b.png │ │ ├── image_b_content.png │ │ ├── image_b_icon.png │ │ ├── image_c.png │ │ ├── image_c_content.png │ │ ├── image_c_icon.png │ │ ├── image_d.png │ │ ├── image_d_content.png │ │ ├── image_d_icon.png │ │ ├── image_e.png │ │ ├── image_e_content.png │ │ ├── image_e_icon.png │ │ ├── maintab_toolbar_bg.png │ │ ├── map_icon_normal.png │ │ ├── map_icon_selected.png │ │ ├── my_icon_normal.png │ │ ├── my_icon_selected.png │ │ ├── pull_down_icon.png │ │ ├── search_box_bg.9.png │ │ └── search_icon.png │ ├── drawable-xxxhdpi │ │ └── center_image_bg.png │ ├── drawable │ │ ├── home_icon.xml │ │ ├── map_icon.xml │ │ ├── my_icon.xml │ │ └── selector_tab_background.xml │ ├── layout │ │ ├── home_fragment.xml │ │ ├── home_list_item.xml │ │ ├── main_tab_item_view.xml │ │ ├── main_tab_layout.xml │ │ └── view_header_blank.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── strings.xml └── src │ └── com │ └── clover │ └── menu │ ├── main │ ├── HomeActivity.java │ └── HomeFragment.java │ └── view │ ├── CenterImageView.java │ ├── MenuImageView.java │ ├── MenuLayout.java │ └── ViewPagerAD.java ├── README.md ├── download └── AnimatorMenu.apk └── image └── preview.gif /AnimatorMenu/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/.classpath -------------------------------------------------------------------------------- /AnimatorMenu/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/.project -------------------------------------------------------------------------------- /AnimatorMenu/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatorMenu/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/ic_launcher-web.png -------------------------------------------------------------------------------- /AnimatorMenu/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/proguard-project.txt -------------------------------------------------------------------------------- /AnimatorMenu/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/project.properties -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-hdpi/center_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-hdpi/center_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-hdpi/qf_search2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-hdpi/qf_search2.9.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-hdpi/qf_trig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-hdpi/qf_trig2.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/home_bottom_tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/home_bottom_tab_bg.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/home_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/home_icon_normal.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/home_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/home_icon_selected.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_a.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_a_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_a_content.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_a_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_a_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_b.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_b_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_b_content.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_b_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_b_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_c.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_c_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_c_content.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_c_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_c_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_d.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_d_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_d_content.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_d_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_d_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_e.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_e_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_e_content.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/image_e_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/image_e_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/maintab_toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/maintab_toolbar_bg.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/map_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/map_icon_normal.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/map_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/map_icon_selected.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/my_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/my_icon_normal.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/my_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/my_icon_selected.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/pull_down_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/pull_down_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/search_box_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/search_box_bg.9.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxhdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxhdpi/search_icon.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable-xxxhdpi/center_image_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable-xxxhdpi/center_image_bg.png -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable/home_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable/home_icon.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable/map_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable/map_icon.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable/my_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable/my_icon.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/drawable/selector_tab_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/drawable/selector_tab_background.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/layout/home_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/layout/home_fragment.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/layout/home_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/layout/home_list_item.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/layout/main_tab_item_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/layout/main_tab_item_view.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/layout/main_tab_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/layout/main_tab_layout.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/layout/view_header_blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/layout/view_header_blank.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/values/attrs.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/values/colors.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/values/dimens.xml -------------------------------------------------------------------------------- /AnimatorMenu/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/res/values/strings.xml -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/main/HomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/main/HomeActivity.java -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/main/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/main/HomeFragment.java -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/view/CenterImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/view/CenterImageView.java -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/view/MenuImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/view/MenuImageView.java -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/view/MenuLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/view/MenuLayout.java -------------------------------------------------------------------------------- /AnimatorMenu/src/com/clover/menu/view/ViewPagerAD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/AnimatorMenu/src/com/clover/menu/view/ViewPagerAD.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/README.md -------------------------------------------------------------------------------- /download/AnimatorMenu.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/download/AnimatorMenu.apk -------------------------------------------------------------------------------- /image/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuechinahb/AnimatorMenu/HEAD/image/preview.gif --------------------------------------------------------------------------------