首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android兑现仿照QQ好友列表滑动效果

2012-12-30 
android实现仿照QQ好友列表滑动效果实现效果如下:ExpandableListView滑动的时候,父视图停留在activity的最

android实现仿照QQ好友列表滑动效果

实现效果如下:ExpandableListView滑动的时候,父视图停留在activity的最上方。

android兑现仿照QQ好友列表滑动效果android兑现仿照QQ好友列表滑动效果

关键代码如下:

<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent" >    <ExpandableListView        android:id="@+id/el_expandableListView"        android:layout_width="fill_parent"        android:layout_height="fill_parent" >    </ExpandableListView>    <LinearLayout        android:id="@+id/ll_citylist_top"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:layout_gravity="center_horizontal"        android:background="@drawable/city_province_bg" >        <TextView            android:id="@+id/tv_citylist_province"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_gravity="center_vertical"            android:padding="5dp" />    </LinearLayout></FrameLayout>

声明:参考了eoe上一个哥们的博客,具体的地址忘记了。

需要工程可以留言联系我。

马上元旦放假:顺道祝大家元旦快乐!游玩注意安全。

热点排行