Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/swipe_container"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5.  
  6. <ListView
  7. android:id="@+id/listViewConversation"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:dividerHeight="1dp" />
  11.  
  12. </android.support.v4.widget.SwipeRefreshLayout>
  13.  
  14. @Override
  15. public void setVisibility(int visibility) {
  16. if (visibility == View.GONE && getCount() == 0) {
  17. return;
  18. }
  19. super.setVisibility(visibility);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement