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