blob: d864e7bc4e16ff2a3967334426672fc949461ef7 [file] [log] [blame]
/*
* Copyright (C) 2013 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 android.support.v4.view;
import android.support.annotation.RequiresApi;
import android.annotation.TargetApi;
import android.view.View;
/**
* KitKat-specific View API implementation.
*/
@RequiresApi(19)
@TargetApi(19)
class ViewCompatKitKat {
public static int getAccessibilityLiveRegion(View view) {
return view.getAccessibilityLiveRegion();
}
public static void setAccessibilityLiveRegion(View view, int mode) {
view.setAccessibilityLiveRegion(mode);
}
public static boolean isLaidOut(View view) {
return view.isLaidOut();
}
public static boolean isAttachedToWindow(View view) {
return view.isAttachedToWindow();
}
public static boolean isLayoutDirectionResolved(View view) {
return view.isLayoutDirectionResolved();
}
}