mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
15 lines
494 B
Java
15 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;
|
||
|
}
|