├── BottomLayout ├── .classpath ├── .gitignore ├── .project ├── 5.gif ├── 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 │ │ ├── ic_tab_index_normal.png │ │ ├── ic_tab_index_pressed.png │ │ ├── ic_tab_message_normal.png │ │ ├── ic_tab_message_pressed.png │ │ ├── ic_tab_profile_normal.png │ │ ├── ic_tab_profile_pressed.png │ │ ├── ic_tab_publish_normal.png │ │ ├── ic_tab_publish_pressed.png │ │ ├── ic_tab_search_normal.png │ │ ├── ic_tab_search_pressed.png │ │ └── read_circle.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── tab_community_selector.xml │ │ ├── tab_enconter_selector.xml │ │ ├── tab_home_selector.xml │ │ ├── tab_message_selector.xml │ │ └── tab_user_selector.xml │ ├── layout │ │ ├── activity_main.xml │ │ └── layout_bottom.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── comzyh │ └── bottomlayout │ ├── BottomLayout.java │ └── MainActivity.java └── README.md /BottomLayout/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/.classpath -------------------------------------------------------------------------------- /BottomLayout/.gitignore: -------------------------------------------------------------------------------- 1 | /gen/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /BottomLayout/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/.project -------------------------------------------------------------------------------- /BottomLayout/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/5.gif -------------------------------------------------------------------------------- /BottomLayout/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/AndroidManifest.xml -------------------------------------------------------------------------------- /BottomLayout/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/ic_launcher-web.png -------------------------------------------------------------------------------- /BottomLayout/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/libs/android-support-v4.jar -------------------------------------------------------------------------------- /BottomLayout/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/proguard-project.txt -------------------------------------------------------------------------------- /BottomLayout/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/project.properties -------------------------------------------------------------------------------- /BottomLayout/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_index_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_index_normal.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_index_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_index_pressed.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_message_normal.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_message_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_message_pressed.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_profile_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_profile_normal.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_profile_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_profile_pressed.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_publish_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_publish_normal.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_publish_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_publish_pressed.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_search_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_search_normal.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/ic_tab_search_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/ic_tab_search_pressed.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xhdpi/read_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xhdpi/read_circle.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomLayout/res/drawable/tab_community_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable/tab_community_selector.xml -------------------------------------------------------------------------------- /BottomLayout/res/drawable/tab_enconter_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable/tab_enconter_selector.xml -------------------------------------------------------------------------------- /BottomLayout/res/drawable/tab_home_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable/tab_home_selector.xml -------------------------------------------------------------------------------- /BottomLayout/res/drawable/tab_message_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable/tab_message_selector.xml -------------------------------------------------------------------------------- /BottomLayout/res/drawable/tab_user_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/drawable/tab_user_selector.xml -------------------------------------------------------------------------------- /BottomLayout/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/layout/activity_main.xml -------------------------------------------------------------------------------- /BottomLayout/res/layout/layout_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/layout/layout_bottom.xml -------------------------------------------------------------------------------- /BottomLayout/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/menu/main.xml -------------------------------------------------------------------------------- /BottomLayout/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values-v11/styles.xml -------------------------------------------------------------------------------- /BottomLayout/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values-v14/styles.xml -------------------------------------------------------------------------------- /BottomLayout/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /BottomLayout/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values/dimens.xml -------------------------------------------------------------------------------- /BottomLayout/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values/strings.xml -------------------------------------------------------------------------------- /BottomLayout/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/res/values/styles.xml -------------------------------------------------------------------------------- /BottomLayout/src/comzyh/bottomlayout/BottomLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/src/comzyh/bottomlayout/BottomLayout.java -------------------------------------------------------------------------------- /BottomLayout/src/comzyh/bottomlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/BottomLayout/src/comzyh/bottomlayout/MainActivity.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanks-zyh/BottomLayout/HEAD/README.md --------------------------------------------------------------------------------