实例介绍
Android 侧滑菜单的实现。参考网上了例子,写了一个demo侧滑菜单的实现。
【实例截图】
【核心代码】
Sideslip
└── Sideslip
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── Sideslip.apk
│ ├── classes
│ │ └── com
│ │ └── mmsx
│ │ ├── activity
│ │ │ ├── BuildConfig.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity$DataTitle.class
│ │ │ ├── MainActivity.class
│ │ │ ├── R$anim.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$bool.class
│ │ │ ├── R$color.class
│ │ │ ├── R$dimen.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$integer.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$menu.class
│ │ │ ├── R$string.class
│ │ │ ├── R$style.class
│ │ │ ├── R.class
│ │ │ ├── SideslipHome.class
│ │ │ ├── SideslipMenu$1.class
│ │ │ ├── SideslipMenu$DesktopAdapter$1.class
│ │ │ ├── SideslipMenu$DesktopAdapter$ViewHolder.class
│ │ │ ├── SideslipMenu$DesktopAdapter.class
│ │ │ ├── SideslipMenu$onChangeViewListener.class
│ │ │ ├── SideslipMenu.class
│ │ │ ├── SideslipOther$onDataListener.class
│ │ │ └── SideslipOther.class
│ │ └── base
│ │ ├── FlipperLayout$OnCloseListener.class
│ │ ├── FlipperLayout$OnOpenListener.class
│ │ ├── FlipperLayout$onUgcDismissListener.class
│ │ ├── FlipperLayout$onUgcShowListener.class
│ │ ├── FlipperLayout.class
│ │ ├── UgcAnimations$1.class
│ │ ├── UgcAnimations.class
│ │ └── ViewUtil.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-657b4403c4daf622e36237ecbcd3387c.jar
│ │ └── android-support-v4-b49add7cde21071ceee7d5c7b0f1d1c4.jar
│ ├── jarlist.cache
│ ├── res
│ │ ├── crunch
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── balloon_l.9.png
│ │ │ │ ├── balloon_l_pressed.9.png
│ │ │ │ ├── balloon_r.9.png
│ │ │ │ ├── balloon_r_pressed.9.png
│ │ │ │ ├── bottombar_bg.9.png
│ │ │ │ ├── chat_bottombar_btn.9.png
│ │ │ │ ├── chat_bottombar_btn_pressed.9.png
│ │ │ │ ├── chat_bottombar_btn_untuch.9.png
│ │ │ │ ├── chat_bottombar_icon_face.png
│ │ │ │ ├── chat_bottombar_icon_face_pressed.png
│ │ │ │ ├── chat_bottombar_input.9.png
│ │ │ │ ├── chat_input.9.png
│ │ │ │ ├── chat_input_pressed.9.png
│ │ │ │ ├── chat_plugin_shadow.png
│ │ │ │ ├── chat_time_block.9.png
│ │ │ │ ├── chat_tool_camera.png
│ │ │ │ ├── cover.png
│ │ │ │ ├── cover_default_bg.png
│ │ │ │ ├── default_pic_loading_back.9.png
│ │ │ │ ├── emotion_del_down.png
│ │ │ │ ├── emotion_del_normal.png
│ │ │ │ ├── head_default.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── red_del_btn_bg_nor.9.png
│ │ │ │ ├── red_del_btn_bg_pre.9.png
│ │ │ │ ├── sidebar_bg_black.png
│ │ │ │ ├── sidebar_dividing_line.png
│ │ │ │ ├── sidebar_dividing_line_middle.png
│ │ │ │ ├── sidebar_icon_dynamic.png
│ │ │ │ ├── sidebar_icon_dynamic_pressed.png
│ │ │ │ ├── sidebar_icon_friends.png
│ │ │ │ ├── sidebar_icon_friends_pressed.png
│ │ │ │ ├── sidebar_icon_gifts.png
│ │ │ │ ├── sidebar_icon_gifts_pressed.png
│ │ │ │ ├── sidebar_icon_lbs.png
│ │ │ │ ├── sidebar_icon_lbs_pressed.png
│ │ │ │ ├── sidebar_icon_news.png
│ │ │ │ ├── sidebar_icon_news_pressed.png
│ │ │ │ ├── sidebar_icon_photo.png
│ │ │ │ ├── sidebar_icon_photo_pressed.png
│ │ │ │ ├── sidebar_icon_recommend.png
│ │ │ │ ├── sidebar_icon_recommend_pressed.png
│ │ │ │ ├── sidebar_icon_set_up.png
│ │ │ │ ├── sidebar_icon_set_up_pressed.png
│ │ │ │ ├── sidebar_icon_viewed.png
│ │ │ │ ├── sidebar_icon_viewed_pressed.png
│ │ │ │ ├── title_bg_blue.png
│ │ │ │ ├── title_button.9.png
│ │ │ │ ├── title_button_back.9.png
│ │ │ │ ├── title_button_back_press.9.png
│ │ │ │ └── title_button_press.9.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-hdpi
│ │ │ ├── balloon_l.9.png
│ │ │ ├── balloon_l_pressed.9.png
│ │ │ ├── balloon_r.9.png
│ │ │ ├── balloon_r_pressed.9.png
│ │ │ ├── bottombar_bg.9.png
│ │ │ ├── chat_bottombar_btn.9.png
│ │ │ ├── chat_bottombar_btn_pressed.9.png
│ │ │ ├── chat_bottombar_btn_untuch.9.png
│ │ │ ├── chat_bottombar_icon_face.png
│ │ │ ├── chat_bottombar_icon_face_pressed.png
│ │ │ ├── chat_bottombar_input.9.png
│ │ │ ├── chat_input.9.png
│ │ │ ├── chat_input_pressed.9.png
│ │ │ ├── chat_plugin_shadow.png
│ │ │ ├── chat_time_block.9.png
│ │ │ ├── chat_tool_camera.png
│ │ │ ├── cover.png
│ │ │ ├── cover_default_bg.png
│ │ │ ├── default_pic_loading_back.9.png
│ │ │ ├── emotion_del_down.png
│ │ │ ├── emotion_del_normal.png
│ │ │ ├── head_default.png
│ │ │ ├── ic_launcher.png
│ │ │ ├── red_del_btn_bg_nor.9.png
│ │ │ ├── red_del_btn_bg_pre.9.png
│ │ │ ├── sidebar_bg_black.png
│ │ │ ├── sidebar_dividing_line.png
│ │ │ ├── sidebar_dividing_line_middle.png
│ │ │ ├── sidebar_icon_dynamic.png
│ │ │ ├── sidebar_icon_dynamic_pressed.png
│ │ │ ├── sidebar_icon_friends.png
│ │ │ ├── sidebar_icon_friends_pressed.png
│ │ │ ├── sidebar_icon_gifts.png
│ │ │ ├── sidebar_icon_gifts_pressed.png
│ │ │ ├── sidebar_icon_lbs.png
│ │ │ ├── sidebar_icon_lbs_pressed.png
│ │ │ ├── sidebar_icon_news.png
│ │ │ ├── sidebar_icon_news_pressed.png
│ │ │ ├── sidebar_icon_photo.png
│ │ │ ├── sidebar_icon_photo_pressed.png
│ │ │ ├── sidebar_icon_recommend.png
│ │ │ ├── sidebar_icon_recommend_pressed.png
│ │ │ ├── sidebar_icon_set_up.png
│ │ │ ├── sidebar_icon_set_up_pressed.png
│ │ │ ├── sidebar_icon_viewed.png
│ │ │ ├── sidebar_icon_viewed_pressed.png
│ │ │ ├── title_bg_blue.png
│ │ │ ├── title_button.9.png
│ │ │ ├── title_button_back.9.png
│ │ │ ├── title_button_back_press.9.png
│ │ │ └── title_button_press.9.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable-xhdpi
│ │ └── ic_launcher.png
│ └── resources.ap_
├── gen
│ └── com
│ └── mmsx
│ └── activity
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── anim
│ │ ├── activity_back.xml
│ │ ├── activity_finish.xml
│ │ ├── activity_new.xml
│ │ └── activity_out.xml
│ ├── color
│ │ └── send_btn_textcolor.xml
│ ├── drawable
│ │ ├── balloon_l_selector.xml
│ │ ├── balloon_r_selector.xml
│ │ ├── chat_bottombar_btn_selector.xml
│ │ ├── chat_item_icon_bg_selector.xml
│ │ ├── chat_title_bg_repeat.xml
│ │ ├── contact_list_item_buddy_name_text_color.xml
│ │ ├── contact_list_item_buddy_signature_text_color.xml
│ │ ├── contact_list_item_buddy_signature_text_color2.xml
│ │ ├── desktop_item_bg.xml
│ │ ├── edit_text.xml
│ │ ├── emotion_del_selector.xml
│ │ ├── list_group_item_background.xml
│ │ ├── list_group_item_background_selected.xml
│ │ ├── list_group_item_background_unselected.xml
│ │ ├── menulist_settings_background.xml
│ │ ├── pop_btn_face_selector.xml
│ │ ├── progress_receivepic.xml
│ │ ├── red_del_btn_bg.xml
│ │ ├── top_back_left_selector.xml
│ │ └── top_button_right_selector.xml
│ ├── drawable-hdpi
│ │ ├── balloon_l.9.png
│ │ ├── balloon_l_pressed.9.png
│ │ ├── balloon_r.9.png
│ │ ├── balloon_r_pressed.9.png
│ │ ├── bottombar_bg.9.png
│ │ ├── chat_bg_01.jpg
│ │ ├── chat_bottombar_btn.9.png
│ │ ├── chat_bottombar_btn_pressed.9.png
│ │ ├── chat_bottombar_btn_untuch.9.png
│ │ ├── chat_bottombar_icon_face.png
│ │ ├── chat_bottombar_icon_face_pressed.png
│ │ ├── chat_bottombar_input.9.png
│ │ ├── chat_input.9.png
│ │ ├── chat_input_pressed.9.png
│ │ ├── chat_plugin_shadow.png
│ │ ├── chat_time_block.9.png
│ │ ├── chat_tool_camera.png
│ │ ├── cover.png
│ │ ├── cover_default_bg.png
│ │ ├── default_pic_loading_back.9.png
│ │ ├── emotion_del_down.png
│ │ ├── emotion_del_normal.png
│ │ ├── h0.jpg
│ │ ├── h1.jpg
│ │ ├── head_default.png
│ │ ├── ic_launcher.png
│ │ ├── red_del_btn_bg_nor.9.png
│ │ ├── red_del_btn_bg_pre.9.png
│ │ ├── sidebar_bg_black.png
│ │ ├── sidebar_dividing_line.png
│ │ ├── sidebar_dividing_line_middle.png
│ │ ├── sidebar_icon_dynamic.png
│ │ ├── sidebar_icon_dynamic_pressed.png
│ │ ├── sidebar_icon_friends.png
│ │ ├── sidebar_icon_friends_pressed.png
│ │ ├── sidebar_icon_gifts.png
│ │ ├── sidebar_icon_gifts_pressed.png
│ │ ├── sidebar_icon_lbs.png
│ │ ├── sidebar_icon_lbs_pressed.png
│ │ ├── sidebar_icon_news.png
│ │ ├── sidebar_icon_news_pressed.png
│ │ ├── sidebar_icon_photo.png
│ │ ├── sidebar_icon_photo_pressed.png
│ │ ├── sidebar_icon_recommend.png
│ │ ├── sidebar_icon_recommend_pressed.png
│ │ ├── sidebar_icon_set_up.png
│ │ ├── sidebar_icon_set_up_pressed.png
│ │ ├── sidebar_icon_viewed.png
│ │ ├── sidebar_icon_viewed_pressed.png
│ │ ├── title_bg_blue.png
│ │ ├── title_button.9.png
│ │ ├── title_button_back.9.png
│ │ ├── title_button_back_press.9.png
│ │ └── title_button_press.9.png
│ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── activity_main.xml
│ │ ├── common_title_bg.xml
│ │ ├── desktop_item.xml
│ │ ├── sideslip_home.xml
│ │ ├── sideslip_menu.xml
│ │ └── sideslip_other.xml
│ ├── menu
│ │ └── activity_main.xml
│ ├── values
│ │ ├── colors.xml
│ │ ├── defaults.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-v11
│ │ └── styles.xml
│ └── values-v14
│ └── styles.xml
└── src
└── com
└── mmsx
├── activity
│ ├── MainActivity.java
│ ├── SideslipHome.java
│ ├── SideslipMenu.java
│ └── SideslipOther.java
└── base
├── FlipperLayout.java
├── UgcAnimations.java
└── ViewUtil.java
41 directories, 258 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论