194349e753cba952f613abb992b0d8c2623bf485eChris Banes/*
294349e753cba952f613abb992b0d8c2623bf485eChris Banes * Copyright (C) 2016 The Android Open Source Project
394349e753cba952f613abb992b0d8c2623bf485eChris Banes *
494349e753cba952f613abb992b0d8c2623bf485eChris Banes * Licensed under the Apache License, Version 2.0 (the "License");
594349e753cba952f613abb992b0d8c2623bf485eChris Banes * you may not use this file except in compliance with the License.
694349e753cba952f613abb992b0d8c2623bf485eChris Banes * You may obtain a copy of the License at
794349e753cba952f613abb992b0d8c2623bf485eChris Banes *
894349e753cba952f613abb992b0d8c2623bf485eChris Banes *      http://www.apache.org/licenses/LICENSE-2.0
994349e753cba952f613abb992b0d8c2623bf485eChris Banes *
1094349e753cba952f613abb992b0d8c2623bf485eChris Banes * Unless required by applicable law or agreed to in writing, software
1194349e753cba952f613abb992b0d8c2623bf485eChris Banes * distributed under the License is distributed on an "AS IS" BASIS,
1294349e753cba952f613abb992b0d8c2623bf485eChris Banes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1394349e753cba952f613abb992b0d8c2623bf485eChris Banes * See the License for the specific language governing permissions and
1494349e753cba952f613abb992b0d8c2623bf485eChris Banes * limitations under the License.
1594349e753cba952f613abb992b0d8c2623bf485eChris Banes */
1694349e753cba952f613abb992b0d8c2623bf485eChris Banes
1794349e753cba952f613abb992b0d8c2623bf485eChris Banespackage com.example.android.supportv4.widget;
1894349e753cba952f613abb992b0d8c2623bf485eChris Banes
1994349e753cba952f613abb992b0d8c2623bf485eChris Banesimport com.example.android.supportv4.R;
2094349e753cba952f613abb992b0d8c2623bf485eChris Banes
2194349e753cba952f613abb992b0d8c2623bf485eChris Banespublic class SwipeRefreshLayoutActivityTextView extends BaseSwipeRefreshLayoutActivity {
2294349e753cba952f613abb992b0d8c2623bf485eChris Banes
2394349e753cba952f613abb992b0d8c2623bf485eChris Banes    @Override
2494349e753cba952f613abb992b0d8c2623bf485eChris Banes    protected int getLayoutId() {
2594349e753cba952f613abb992b0d8c2623bf485eChris Banes        return R.layout.swipe_refresh_widget_textview;
2694349e753cba952f613abb992b0d8c2623bf485eChris Banes    }
2794349e753cba952f613abb992b0d8c2623bf485eChris Banes
2894349e753cba952f613abb992b0d8c2623bf485eChris Banes}
29