일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- android device add account
- progressbar custom marshmallow
- java hashmap sorting
- android border custom
- bindservice
- android google account add call
- android layout border
- nougat
- HashMap
- progressbar rounding
- app to app transaction
- android progressbar setIndeterminateDrawable not working
- Messenger
Archives
- Today
- Total
기타치는 개발자
[Android]SwipeRefreshLayout 활용하기 본문
아래와 같은 UI를 처리를 위한 방법을 정리해보려 합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | public class MainActivity extends Activity implements View.OnClickListener { @Bind(R.id.swiperefreshlayout) SwipeRefreshLayout swipeRefreshLayout; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); // swipeRefreshLayout.setSwipeableChildren(R.id.swiperefreshlayout); swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() { @Override public void onRefresh() { //call method for refresh swipeRefreshLayout.setRefreshing(false); } }); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swiperefreshlayout" android:layout_width="match_parent" android:layout_height="match_parent"> <ListView android:id="@+id/content_listview" android:layout_width="match_parent" android:layout_height="match_parent"/> </android.support.v4.widget.SwipeRefreshLayout> </LinearLayout> | cs |
위와같이 쉽게 구현할수 있습니다.
하지만 안에있는 뷰가 스크롤이 생겻을때 기존 스크롤 이벤트와 충돌되는 경우가 있습니다.
이경우에는 아래와 같은 CustomView를 작성하여 사용하시면 될것 같습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | /* * Copyright 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.example.android.swiperefreshmultipleviews; import android.content.Context; import android.support.v4.view.ViewCompat; import android.support.v4.widget.SwipeRefreshLayout; import android.util.AttributeSet; import android.view.View; import android.widget.AbsListView; /** * A descendant of {@link android.support.v4.widget.SwipeRefreshLayout} which supports multiple * child views triggering a refresh gesture. You set the views which can trigger the gesture via * {@link #setSwipeableChildren(int...)}, providing it the child ids. */ public class MultiSwipeRefreshLayout extends SwipeRefreshLayout { private View[] mSwipeableChildren; public MultiSwipeRefreshLayout(Context context) { super(context); } public MultiSwipeRefreshLayout(Context context, AttributeSet attrs) { super(context, attrs); } /** * Set the children which can trigger a refresh by swiping down when they are visible. These * views need to be a descendant of this view. */ public void setSwipeableChildren(final int... ids) { assert ids != null; // Iterate through the ids and find the Views mSwipeableChildren = new View[ids.length]; for (int i = 0; i < ids.length; i++) { mSwipeableChildren[i] = findViewById(ids[i]); } } /** * This method controls when the swipe-to-refresh gesture is triggered. By returning false here * we are signifying that the view is in a state where a refresh gesture can start. * * <p>As {@link android.support.v4.widget.SwipeRefreshLayout} only supports one direct child by * default, we need to manually iterate through our swipeable children to see if any are in a * state to trigger the gesture. If so we return false to start the gesture. */ @Override public boolean canChildScrollUp() { if (mSwipeableChildren != null && mSwipeableChildren.length > 0) { // Iterate through the scrollable children and check if any of them can not scroll up for (View view : mSwipeableChildren) { if (view != null && view.isShown() && !canViewScrollUp(view)) { // If the view is shown, and can not scroll upwards, return false and start the // gesture. return false; } } } return true; } /** * Utility method to check whether a {@link View} can scroll up from it's current position. * Handles platform version differences, providing backwards compatible functionality where * needed. */ private static boolean canViewScrollUp(View view) { if (android.os.Build.VERSION.SDK_INT >= 14) { // For ICS and above we can call canScrollVertically() to determine this return ViewCompat.canScrollVertically(view, -1); } else { if (view instanceof AbsListView) { // Pre-ICS we need to manually check the first visible item and the child view's top // value final AbsListView listView = (AbsListView) view; return listView.getChildCount() > 0 && (listView.getFirstVisiblePosition() > 0 || listView.getChildAt(0).getTop() < listView.getPaddingTop()); } else { // For all other view types we just check the getScrollY() value return view.getScrollY() > 0; } } } } | cs |
소스 출처 : https://developer.android.com/samples/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/MultiSwipeRefreshLayout.html
기존 소스는 아래와같이 스크롤이 되는 ChildView id값을 지정해주면됩니다.
1 2 3 4 5 6 7 8 9 | //add child view in swipeRefreshLayout swipeRefreshLayout.setSwipeableChildren(R.id.content_listview); swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() { @Override public void onRefresh() { reloadData(); swipeRefreshLayout.setRefreshing(false); } }); |
'안드로이드' 카테고리의 다른 글
[Android]Intent 사용하여 단말 구글계정 등록하기호출 (0) | 2016.06.28 |
---|---|
[Android]ProgressBar IndeterminateDrawable적용하기 및 곡선 처리 (5) | 2016.06.15 |
[Android]간단한 프리퍼런스 사용하기 (0) | 2016.05.31 |
[Android]ORMLite 적용하기 (0) | 2016.05.27 |