com.android.ide.common.rendering.RenderParamsFlags Maven / Gradle / Ivy
/*
* Copyright (C) 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.android.ide.common.rendering;
import com.android.ide.common.rendering.api.RenderParams;
import com.android.ide.common.rendering.api.SessionParams.Key;
/**
* This contains all known keys for the {@link RenderParams#setFlag(Key, Object)}.
*
* LayoutLib has it's own copy of this class which may be newer or older than this one.
*
* Constants should never be modified or removed from this class.
*/
public final class RenderParamsFlags {
public static final Key FLAG_KEY_ROOT_TAG =
new Key("rootTag", String.class);
public static final Key FLAG_KEY_DISABLE_BITMAP_CACHING =
new Key("disableBitmapCaching", Boolean.class);
public static final Key FLAG_KEY_RENDER_ALL_DRAWABLE_STATES =
new Key("renderAllDrawableStates", Boolean.class);
/**
* To tell LayoutLib that the IDE supports RecyclerView.
*
* Default is false.
*/
public static final Key FLAG_KEY_RECYCLER_VIEW_SUPPORT =
new Key("recyclerViewSupport", Boolean.class);
/**
* The application package name. Used via
* {@link com.android.ide.common.rendering.api.LayoutlibCallback#getFlag(Key)}
*/
public static final Key FLAG_KEY_APPLICATION_PACKAGE =
new Key("applicationPackage", String.class);
// Disallow instances.
private RenderParamsFlags() {}
}