mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
14 lines
494 B
Java
14 lines
494 B
Java
package com.google.android.material.bottomnavigation;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
@Deprecated
|
|
/* loaded from: classes2.dex */
|
|
public @interface LabelVisibilityMode {
|
|
public static final int LABEL_VISIBILITY_AUTO = -1;
|
|
public static final int LABEL_VISIBILITY_LABELED = 1;
|
|
public static final int LABEL_VISIBILITY_SELECTED = 0;
|
|
public static final int LABEL_VISIBILITY_UNLABELED = 2;
|
|
}
|