채널 새로고침
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/channel_broadcast_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/channel_broadcast_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
/>
</android.support.v4.widget.SwipeRefreshLayout>
// 채널 새로고침
mBinding.channelBroadcastRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
inquiryChannelList();
}
});
mBinding.channelBroadcastRefresh.setColorSchemeResources(R.color.colorAccent);
mBinding.channelBroadcastRefresh.setRefreshing(false);
핀치 투 줌(Pinch-To-Zoom) 라이브러리
출처 : https://www.alphafactory.co.kr/post/2013/07/13/pinch-to-zoom-library/
Custom ToogleButton
'Study > Android' 카테고리의 다른 글
[Android] Proguard(프로가드) 추가 (0) | 2019.06.12 |
---|---|
[Android] 맥에서 안드로이드 apk 디컴파일 하기 (0) | 2019.06.12 |
[Android] 페이스북 로그인 연동 에러-Invalid-key-hash (0) | 2019.06.12 |
[Android] KEY_CODE 표 (0) | 2019.06.12 |
[android] toolbar 그림자 (0) | 2019.06.12 |