读书人

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

发布时间: 2012-12-30 10:43:15 作者: rapoo

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上一个哥们的博客,具体的地址忘记了。

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

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

读书人网 >Android

热点推荐