From d542f1c947521da4492a16e32bb7676033d73852 Mon Sep 17 00:00:00 2001 From: khanhduytran0 Date: Thu, 16 Apr 2020 08:16:46 +0700 Subject: [PATCH 01/10] Dalvikvm --- .../minecraftegl/MinecraftEGLInitializer.java | 38 +++++ .../net/kdt/pojavlaunch/MainActivity.java | 140 ++++++++++-------- .../main/java/net/kdt/pojavlaunch/Tools.java | 7 + app/src/main/res/layout/settings.xml | 3 +- 4 files changed, 125 insertions(+), 63 deletions(-) create mode 100644 app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java diff --git a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java new file mode 100644 index 000000000..90a00b4c7 --- /dev/null +++ b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java @@ -0,0 +1,38 @@ +package com.kdt.minecraftegl; + +import java.lang.reflect.*; +import com.google.android.gles_jni.*; +import javax.microedition.khronos.egl.*; +import org.lwjgl.opengl.*; + +public class MinecraftEGLInitializer +{ + static { + System.loadLibrary("android_runtime"); + } + + public static void main(String[] args) throws Throwable { + long eglAddress = Long.parseLong(args[0]); + + System.out.println("Received EGL context address: " + Long.toString(eglAddress)); + + String minecraftMainClass = args[1]; + String[] minecraftArgs = new String[args.length - 1]; + for (int i = 2; i < args.length; i++) { + minecraftArgs[i - 2] = args[i]; + } + + AndroidContextImplementation.context = new EGLContextImpl(eglAddress); + AndroidContextImplementation.theEgl = (EGL10) AndroidContextImplementation.context.getEGL(); + AndroidContextImplementation.display = new EGLDisplayImpl(eglAddress); + AndroidContextImplementation.read = new EGLSurfaceImpl(eglAddress); + AndroidContextImplementation.draw = new EGLSurfaceImpl(eglAddress); + AndroidContextImplementation.theEgl.eglMakeCurrent(AndroidContextImplementation.display, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); + + System.out.println(new StringBuffer().append("Gave up context: ").append(AndroidContextImplementation.context).toString()); + + Class minecraftClass = Class.forName(minecraftMainClass); + Method minecraftMethod = minecraftClass.getMethod("main", String[].class); + minecraftMethod.invoke(null, new Object[]{minecraftArgs}); + } +} diff --git a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java index 0f1683c72..a881215cd 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java +++ b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java @@ -37,6 +37,7 @@ import org.lwjgl.util.glu.tessellation.*; import android.app.AlertDialog; import android.graphics.drawable.Drawable; import net.kdt.pojavlaunch.value.customcontrols.*; +import com.google.android.gles_jni.*; public class MainActivity extends AppCompatActivity implements OnTouchListener, OnClickListener { @@ -138,52 +139,6 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, setContentView(R.layout.main); try { - ExitManager.setExitTrappedListener(new ExitManager.ExitTrappedListener(){ - @Override - public void onExitTrapped() - { - runOnUiThread(new Runnable(){ - - @Override - public void run() - { - isExited = true; - - AlertDialog.Builder d = new AlertDialog.Builder(MainActivity.this); - d.setTitle(R.string.mcn_exit_title); - - try { - File crashLog = Tools.lastFileModified(Tools.crashPath); - if(crashLog != null && Tools.read(crashLog.getAbsolutePath()).startsWith("---- Minecraft Crash Report ----")){ - d.setMessage(R.string.mcn_exit_crash); - } else { - fullyExit(); - return; - } - } catch (Throwable th) { - d.setMessage(getStr(R.string.mcn_exit_errcrash) + "\n" + Log.getStackTraceString(th)); - } - d.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener(){ - - @Override - public void onClick(DialogInterface p1, int p2) - { - fullyExit(); - } - }); - d.setCancelable(false); - d.show(); - } - }); - } - }); - - try { - ExitManager.disableSystemExit(); - } catch (Throwable th) { - Log.w(Tools.APP_NAME, "Could not disable System.exit() method!", th); - } - mProfile = PojavProfile.getCurrentProfileContent(this); mVersionInfo = Tools.getVersionInfo(mProfile.getVersion()); @@ -622,6 +577,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, }); glSurfaceView.setOnTouchListener(glTouchListener); glSurfaceView.setRenderer(new GLTextureView.Renderer() { + private volatile long eglContext = 0l; @Override public void onSurfaceDestroyed(GL10 gl) { Log.d(Tools.APP_NAME, "Surface destroyed."); @@ -633,6 +589,8 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, calculateMcScale(); EGL10 egl10 = (EGL10) EGLContext.getEGL(); + + /* AndroidContextImplementation.theEgl = egl10; AndroidContextImplementation.context = egl10.eglGetCurrentContext(); AndroidContextImplementation.display = egl10.eglGetCurrentDisplay(); @@ -640,7 +598,17 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, AndroidContextImplementation.draw = egl10.eglGetCurrentSurface(EGL10.EGL_DRAW); egl10.eglMakeCurrent(AndroidContextImplementation.display, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); System.out.println(new StringBuffer().append("Gave up context: ").append(AndroidContextImplementation.context).toString()); - + */ + + EGLContextImpl eglContextImpl = (EGLContextImpl) egl10.eglGetCurrentContext(); + try { + Field eglContextField = eglContextImpl.getClass().getDeclaredField("mEGLContext"); + eglContextField.setAccessible(true); + eglContext = eglContextField.get(eglContextImpl); + } catch (Throwable th) { + Tools.showError(MainActivity.this, th, true); + } + new Thread(new Runnable(){ @Override @@ -648,7 +616,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, { try { Thread.sleep(200); - runCraft(); + runCraft(eglContext); } catch (Throwable e) { Tools.showError(MainActivity.this, e, true); } @@ -810,10 +778,6 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, return false; } - public static void fullyExit() { - ExitManager.stopExitLoop(); - } - public void forceUserHome(String s) throws Exception { Properties props = System.getProperties(); Class clazz = props.getClass(); @@ -917,7 +881,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, public static String launchClassPath; public static String launchOptimizedDirectory; public static String launchLibrarySearchPath; - private void runCraft() throws Throwable + private void runCraft(long eglContext) throws Throwable { String[] launchArgs = getMCArgs(); @@ -939,6 +903,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, if (mVersionInfo.mainClass.equals("net.minecraft.launchwrapper.Launch")) { net.minecraft.launchwrapper.Launch.main(launchArgs); } else { + /* LoggerJava.OnStringPrintListener printLog = new LoggerJava.OnStringPrintListener(){ @Override @@ -953,6 +918,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, PrintStream theStreamErr = new PrintStream(new LoggerJava.LoggerOutputStream(System.err, printLog)); System.setErr(theStreamErr); + */ fixRSAPadding(); @@ -960,18 +926,63 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, System.out.println(launchClassPath); System.out.println(); - // Load classpath - DexClassLoader launchBaseLoader = new DexClassLoader(launchClassPath, launchOptimizedDirectory, launchLibrarySearchPath, getClassLoader()); + List dalvikArgs = new ArrayList(); + dalvikArgs.add("dalvikvm32"); + dalvikArgs.add("-Dorg.apache.logging.log4j.level=INFO"); + dalvikArgs.add("-Dorg.apache.logging.log4j.simplelog.level=INFO"); + dalvikArgs.add("-Dlog4j2.disable.jmx=true"); + dalvikArgs.add("-Xmx512M"); // Max heap + dalvikArgs.add("-Djava.library.path=/system/lib:" + getApplicationInfo().nativeLibraryDir); + dalvikArgs.add("-cp"); + dalvikArgs.add(getApplicationInfo().publicSourceDir + ":" + launchClassPath); - // Launch Minecraft - Class mainClass = launchBaseLoader.loadClass(mVersionInfo.mainClass); - Method mainMethod = mainClass.getMethod("main", String[].class); - mainMethod.setAccessible(true); - mainMethod.invoke(null, new Object[]{launchArgs}); + dalvikArgs.add("com.kdt.minecraftegl.MinecraftEGLInitializer"); + dalvikArgs.add(Long.toString(eglContext)); + dalvikArgs.add(mVersionInfo.mainClass); + dalvikArgs.addAll(Arrays.asList(launchArgs)); + + java.lang.Process process = Runtime.getRuntime().exec(dalvikArgs.toArray(new String[0])); + + BufferedReader bis1 = new BufferedReader(new InputStreamReader(process.getInputStream())); + String read1; + while((read1 = bis1.readLine()) != null) { + appendlnToLog(read1); + } + + BufferedReader bis2 = new BufferedReader(new InputStreamReader(process.getErrorStream())); + String read2; + while((read2 = bis2.readLine()) != null) { + appendlnToLog(read2); + } + + final int waitFor = process.waitFor(); + + runOnUiThread(new Runnable(){ + + @Override + public void run() + { + AlertDialog.Builder d = new AlertDialog.Builder(MainActivity.this); + d.setTitle(R.string.mcn_exit_title); + d.setMessage("Exited with code " + waitFor); + d.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener(){ + + @Override + public void onClick(DialogInterface p1, int p2) + { + // finish(); + } + }); + d.setCancelable(false); + d.show(); + } + }); } } - + private void createEGLHackStuff() { + + } public void fixRSAPadding() throws Exception { // welcome to the territory of YOLO; I'll be your tour guide for today. @@ -1088,7 +1099,7 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, } private void appendToLog(final String text) { - if (!isLogAllow) return; + // if (!isLogAllow) return; textLog.post(new Runnable(){ @Override public void run() @@ -1183,6 +1194,11 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, // Toast.makeText(MainActivity.this, "Could not exit. Please force close this app.", Toast.LENGTH_LONG).show(); } + + private void fullyExit() + { + // TODO: Implement this method + } }) .show(); } diff --git a/app/src/main/java/net/kdt/pojavlaunch/Tools.java b/app/src/main/java/net/kdt/pojavlaunch/Tools.java index a06cc787c..874b22def 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/Tools.java +++ b/app/src/main/java/net/kdt/pojavlaunch/Tools.java @@ -190,11 +190,14 @@ public final class Tools public void onClick(DialogInterface p1, int p2) { if(exitIfOk) { + /* if (ctx instanceof MainActivity) { MainActivity.fullyExit(); } else { ctx.finish(); } + */ + ctx.finish(); } } }) @@ -215,11 +218,15 @@ public final class Tools Toolkit.getDefaultToolkit().getSystemClipboard().setContents(errData, null); if(exitIfOk) { + /* if (ctx instanceof MainActivity) { MainActivity.fullyExit(); } else { ctx.finish(); } + */ + + ctx.finish(); } } }) diff --git a/app/src/main/res/layout/settings.xml b/app/src/main/res/layout/settings.xml index 59c349229..888957fdc 100644 --- a/app/src/main/res/layout/settings.xml +++ b/app/src/main/res/layout/settings.xml @@ -115,7 +115,8 @@ android:layout_height="wrap_content" android:layout_width="match_parent" android:orientation="vertical" - android:layout_margin="10dp"> + android:layout_margin="10dp" + android:visibility="gone"> Date: Fri, 17 Apr 2020 05:15:49 +0700 Subject: [PATCH 02/10] Launch using app_process32 --- .../minecraftegl/MinecraftEGLInitializer.java | 102 ++++++++--- app/src/main/java/javax/imageio/ImageIO.java | 25 ++- .../imageio/spi/ImageInputStreamSpi.java | 3 +- .../net/kdt/pojavlaunch/MainActivity.java | 164 ++++++------------ .../pojavlaunch/ShellProcessOperation.java | 13 +- 5 files changed, 163 insertions(+), 144 deletions(-) diff --git a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java index 90a00b4c7..a5cad47ad 100644 --- a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java +++ b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java @@ -1,38 +1,96 @@ package com.kdt.minecraftegl; -import java.lang.reflect.*; +import android.os.*; +import android.system.*; import com.google.android.gles_jni.*; +import java.lang.reflect.*; +import java.util.*; import javax.microedition.khronos.egl.*; +import net.kdt.pojavlaunch.*; import org.lwjgl.opengl.*; +import dalvik.system.*; public class MinecraftEGLInitializer { - static { - System.loadLibrary("android_runtime"); + public static void main(String[] args) throws Throwable { + try { + // long eglAddress = Long.parseLong(args[0]); + + MainActivity.launchClassPath = args[0]; + MainActivity.launchOptimizedDirectory = args[1]; + MainActivity.launchLibrarySearchPath = args[2]; + + // System.out.println("Received EGL context address: " + Long.toString(eglAddress)); + + String minecraftMainClass = args[3]; + List minecraftArgs = new ArrayList(); + for (int i = 4; i < args.length; i++) { + if (args[i] != null && !args[i].isEmpty()) + minecraftArgs.add(args[i]); + } + + initEnvs(); + + EGL10 egl; + AndroidContextImplementation.theEgl = egl = (EGL10) EGLContext.getEGL(); // AndroidContextImplementation.context.getEGL(); + AndroidContextImplementation.context = egl.eglGetCurrentContext(); // new EGLContextImpl(eglAddress); + AndroidContextImplementation.display = egl.eglGetCurrentDisplay(); + AndroidContextImplementation.read = egl.eglGetCurrentSurface(EGL10.EGL_READ); + AndroidContextImplementation.draw = egl.eglGetCurrentSurface(EGL10.EGL_DRAW); + + boolean makeCurrBool = AndroidContextImplementation.theEgl.eglMakeCurrent(AndroidContextImplementation.display, AndroidContextImplementation.read, AndroidContextImplementation.draw, AndroidContextImplementation.context); + System.out.println("Gave up context: " + AndroidContextImplementation.context + ", makeCurrent: " + Boolean.toString(makeCurrBool)); + System.out.println("eglGetError: " + Integer.toString(egl.eglGetError())); + System.out.println("user.home: " + System.getProperty("user.home")); + + DexClassLoader classLoader = new DexClassLoader(args[0], args[1], args[2], MinecraftEGLInitializer.class.getClassLoader()); + Class minecraftClass = classLoader.loadClass(minecraftMainClass); + Method minecraftMethod = minecraftClass.getMethod("main", String[].class); + minecraftMethod.invoke(null, new Object[]{minecraftArgs.toArray(new String[0])}); + } catch (Throwable th) { + th.printStackTrace(); + System.exit(1); + } } - public static void main(String[] args) throws Throwable { - long eglAddress = Long.parseLong(args[0]); + + public static void forceUserHome(String s) throws Exception { + Properties props = System.getProperties(); + Class clazz = props.getClass(); + Field f = null; + while (clazz != null) { + try { + f = clazz.getDeclaredField("defaults"); + break; + } catch (Exception e) { + clazz = clazz.getSuperclass(); + } + } + if (f != null) { + f.setAccessible(true); + Properties p = ((Properties) f.get(props)); + p.put("user.home", s); + // p.put("user.dir", s); + } + } - System.out.println("Received EGL context address: " + Long.toString(eglAddress)); - - String minecraftMainClass = args[1]; - String[] minecraftArgs = new String[args.length - 1]; - for (int i = 2; i < args.length; i++) { - minecraftArgs[i - 2] = args[i]; + public static void initEnvs() throws Exception { + Os.setenv("LIBGL_MIPMAP", "3", true); + System.setProperty("user.home", Tools.MAIN_PATH); + if (!System.getProperty("user.home", "/").equals(Tools.MAIN_PATH)) { + forceUserHome(Tools.MAIN_PATH); } + System.setProperty("org.apache.logging.log4j.level", "INFO"); + System.setProperty("org.apache.logging.log4j.simplelog.level", "INFO"); - AndroidContextImplementation.context = new EGLContextImpl(eglAddress); - AndroidContextImplementation.theEgl = (EGL10) AndroidContextImplementation.context.getEGL(); - AndroidContextImplementation.display = new EGLDisplayImpl(eglAddress); - AndroidContextImplementation.read = new EGLSurfaceImpl(eglAddress); - AndroidContextImplementation.draw = new EGLSurfaceImpl(eglAddress); - AndroidContextImplementation.theEgl.eglMakeCurrent(AndroidContextImplementation.display, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); + // Disable javax management for smaller launcher. + System.setProperty("log4j2.disable.jmx", "true"); - System.out.println(new StringBuffer().append("Gave up context: ").append(AndroidContextImplementation.context).toString()); + //System.setProperty("net.zhuoweizhang.boardwalk.org.apache.logging.log4j.level", "INFO"); + //System.setProperty("net.zhuoweizhang.boardwalk.org.apache.logging.log4j.simplelog.level", "INFO"); - Class minecraftClass = Class.forName(minecraftMainClass); - Method minecraftMethod = minecraftClass.getMethod("main", String[].class); - minecraftMethod.invoke(null, new Object[]{minecraftArgs}); - } + // Change info for useful dump + System.setProperty("java.vm.info", Build.MANUFACTURER + " " + Build.MODEL + ", Android " + Build.VERSION.RELEASE); + } + } diff --git a/app/src/main/java/javax/imageio/ImageIO.java b/app/src/main/java/javax/imageio/ImageIO.java index 664e1a93d..3ec5ba156 100644 --- a/app/src/main/java/javax/imageio/ImageIO.java +++ b/app/src/main/java/javax/imageio/ImageIO.java @@ -37,6 +37,10 @@ import android.graphics.*; import java.awt.image.*; import javax.imageio.stream.*; import java.io.*; +import libcore.net.url.*; +import java.lang.reflect.*; +import java.util.jar.*; +import java.util.zip.*; /** * The ImageIO class provides static methods to perform reading and writing @@ -428,7 +432,26 @@ public final class ImageIO { if (input == null) { throw new IllegalArgumentException("input == null!"); } - + + // DEBUG + /* + if (input.getClass().getName().equals("libcore.net.url.JarURLConnectionImpl$JarURLConnectionInputStream")) { + try { + Field f = input.getClass().getDeclaredField("jarFile"); + f.setAccessible(true); + JarFile jf = (JarFile) f.get(input); + Field f2 = input.getClass().getField("fileName"); + f2.setAccessible(true); + System.out.println("Found JarFile = " + f2.get(jf).toString()); + } catch (Throwable th) { + System.err.println("Unable to get jarFile."); + System.err.println("__________ BEGIN ERR"); + th.printStackTrace(); + System.err.println("__________ ENDED ERR"); + } + } + */ + ImageInputStream stream = createImageInputStream(input); return read(stream); } diff --git a/app/src/main/java/javax/imageio/spi/ImageInputStreamSpi.java b/app/src/main/java/javax/imageio/spi/ImageInputStreamSpi.java index fc859a871..b677f4fa5 100644 --- a/app/src/main/java/javax/imageio/spi/ImageInputStreamSpi.java +++ b/app/src/main/java/javax/imageio/spi/ImageInputStreamSpi.java @@ -24,6 +24,7 @@ package javax.imageio.spi; import java.io.File; import java.io.IOException; import javax.imageio.stream.ImageInputStream; +import net.kdt.pojavlaunch.*; /** * The ImageInputStreamSpi abstract class is a service provider interface (SPI) @@ -126,6 +127,6 @@ public abstract class ImageInputStreamSpi extends IIOServiceProvider implements * if an I/O exception has occurred. */ public ImageInputStream createInputStreamInstance(Object input) throws IOException { - return createInputStreamInstance(input, true, null); + return createInputStreamInstance(input, true, new File(Tools.datapath, "cache")); } } diff --git a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java index a881215cd..d045b9e71 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java +++ b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java @@ -144,7 +144,6 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, setTitle("Minecraft " + mProfile.getVersion()); - initEnvs(); //System.loadLibrary("gl4es"); this.displayMetrics = Tools.getDisplayMetrics(this); @@ -778,47 +777,6 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, return false; } - public void forceUserHome(String s) throws Exception { - Properties props = System.getProperties(); - Class clazz = props.getClass(); - Field f = null; - while (clazz != null) { - try { - f = clazz.getDeclaredField("defaults"); - break; - } catch (Exception e) { - clazz = clazz.getSuperclass(); - } - } - if (f != null) { - f.setAccessible(true); - ((Properties) f.get(props)).put("user.home", s); - } - } - - public void initEnvs() { - try { - Os.setenv("LIBGL_MIPMAP", "3", true); - System.setProperty("user.home", Tools.MAIN_PATH); - if (!System.getProperty("user.home", "/").equals(Tools.MAIN_PATH)) { - forceUserHome(Tools.MAIN_PATH); - } - System.setProperty("org.apache.logging.log4j.level", "INFO"); - System.setProperty("org.apache.logging.log4j.simplelog.level", "INFO"); - - // Disable javax management for smaller launcher. - System.setProperty("log4j2.disable.jmx", "true"); - - //System.setProperty("net.zhuoweizhang.boardwalk.org.apache.logging.log4j.level", "INFO"); - //System.setProperty("net.zhuoweizhang.boardwalk.org.apache.logging.log4j.simplelog.level", "INFO"); - - // Change info for useful dump - System.setProperty("java.vm.info", Build.MANUFACTURER + " " + Build.MODEL + ", Android " + Build.VERSION.RELEASE); - } catch (Exception e) { - Tools.showError(MainActivity.this, e, true); - } - } - private boolean isPointerCaptureSupported() { return Build.VERSION.SDK_INT >= 26; } @@ -900,84 +858,60 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, launchOptimizedDirectory = optDir.getAbsolutePath(); launchLibrarySearchPath = getApplicationInfo().nativeLibraryDir; - if (mVersionInfo.mainClass.equals("net.minecraft.launchwrapper.Launch")) { - net.minecraft.launchwrapper.Launch.main(launchArgs); - } else { - /* - LoggerJava.OnStringPrintListener printLog = new LoggerJava.OnStringPrintListener(){ + fixRSAPadding(); + + System.out.println("> Running Minecraft with classpath:"); + System.out.println(launchClassPath); + System.out.println(); + + ShellProcessOperation shell = new ShellProcessOperation(new ShellProcessOperation.OnPrintListener(){ @Override - public void onCharPrint(char c) - { - appendToLog(Character.toString(c)); + public void onPrintLine(String text) { + appendToLog(text); } - }; - - PrintStream theStreamOut = new PrintStream( new LoggerJava.LoggerOutputStream(System.out, printLog)); - System.setOut(theStreamOut); - - PrintStream theStreamErr = new PrintStream(new LoggerJava.LoggerOutputStream(System.err, printLog)); - System.setErr(theStreamErr); - */ + }); + shell.initInputStream(this); - fixRSAPadding(); - - System.out.println("> Running Minecraft with classpath:"); - System.out.println(launchClassPath); - System.out.println(); - - List dalvikArgs = new ArrayList(); - dalvikArgs.add("dalvikvm32"); - dalvikArgs.add("-Dorg.apache.logging.log4j.level=INFO"); - dalvikArgs.add("-Dorg.apache.logging.log4j.simplelog.level=INFO"); - dalvikArgs.add("-Dlog4j2.disable.jmx=true"); - dalvikArgs.add("-Xmx512M"); // Max heap - dalvikArgs.add("-Djava.library.path=/system/lib:" + getApplicationInfo().nativeLibraryDir); - dalvikArgs.add("-cp"); - dalvikArgs.add(getApplicationInfo().publicSourceDir + ":" + launchClassPath); - - dalvikArgs.add("com.kdt.minecraftegl.MinecraftEGLInitializer"); - dalvikArgs.add(Long.toString(eglContext)); - dalvikArgs.add(mVersionInfo.mainClass); - dalvikArgs.addAll(Arrays.asList(launchArgs)); - - java.lang.Process process = Runtime.getRuntime().exec(dalvikArgs.toArray(new String[0])); - - BufferedReader bis1 = new BufferedReader(new InputStreamReader(process.getInputStream())); - String read1; - while((read1 = bis1.readLine()) != null) { - appendlnToLog(read1); - } - - BufferedReader bis2 = new BufferedReader(new InputStreamReader(process.getErrorStream())); - String read2; - while((read2 = bis2.readLine()) != null) { - appendlnToLog(read2); - } - - final int waitFor = process.waitFor(); - - runOnUiThread(new Runnable(){ - - @Override - public void run() - { - AlertDialog.Builder d = new AlertDialog.Builder(MainActivity.this); - d.setTitle(R.string.mcn_exit_title); - d.setMessage("Exited with code " + waitFor); - d.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener(){ - - @Override - public void onClick(DialogInterface p1, int p2) - { - // finish(); - } - }); - d.setCancelable(false); - d.show(); - } - }); + shell.writeToProcess("base=/system"); + shell.writeToProcess("export CLASSPATH=" + getApplicationInfo().publicSourceDir); // ":" + launchClassPath + "\n"); + String argStr = ""; + for (String arg : launchArgs) { + argStr = argStr + " " + arg; } + String execAppProcessStr = ( + "exec app_process32 " + + "-Xmx512M " + + "-Djava.library.path=/system/lib:" + getApplicationInfo().nativeLibraryDir + " " + + "$base/bin com.kdt.minecraftegl.MinecraftEGLInitializer " + + launchClassPath + " " + launchOptimizedDirectory + " " + launchLibrarySearchPath + " " + + this.mVersionInfo.mainClass + argStr + ); + System.out.println(execAppProcessStr); + shell.writeToProcess(execAppProcessStr); + + final int waitFor = shell.waitFor(); + + runOnUiThread(new Runnable(){ + + @Override + public void run() + { + AlertDialog.Builder d = new AlertDialog.Builder(MainActivity.this); + d.setTitle(R.string.mcn_exit_title); + d.setMessage("Exited with code " + waitFor); + d.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener(){ + + @Override + public void onClick(DialogInterface p1, int p2) + { + // finish(); + } + }); + d.setCancelable(false); + d.show(); + } + }); } private void createEGLHackStuff() { diff --git a/app/src/main/java/net/kdt/pojavlaunch/ShellProcessOperation.java b/app/src/main/java/net/kdt/pojavlaunch/ShellProcessOperation.java index 818e67e11..58fa15a86 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/ShellProcessOperation.java +++ b/app/src/main/java/net/kdt/pojavlaunch/ShellProcessOperation.java @@ -9,15 +9,18 @@ public class ShellProcessOperation private Process process; public ShellProcessOperation(OnPrintListener listener) throws IOException { - this.listener = listener; - process = Runtime.getRuntime().exec("/system/bin/sh"); + this(listener, "sh"); } public ShellProcessOperation(OnPrintListener listener, String command) throws IOException { this.listener = listener; - process = Runtime.getRuntime().exec( - command - ); //"/system/bin/sh -c \"" + command + "\""); + + ProcessBuilder builder = new ProcessBuilder(command); + builder.redirectErrorStream(true); + + process = builder.start(); + + //"/system/bin/sh -c \"" + command + "\""); } public void writeToProcess(String cmd) throws IOException { From 1f02968e30943aba9d53bba3eb4d8f5ee18b1c03 Mon Sep 17 00:00:00 2001 From: khanhduytran0 Date: Sat, 18 Apr 2020 20:03:52 +0700 Subject: [PATCH 03/10] Attempt EGL hack stuff --- app/build.gradle | 4 +- .../minecraftegl/MinecraftEGLInitializer.java | 57 +++++++++++++++---- .../com/kdt/minecraftegl/SurfaceUtils.java | 32 +++++++++++ .../net/kdt/pojavlaunch/MainActivity.java | 9 ++- .../net/kdt/pojavlaunch/exit/ExitManager.java | 7 ++- 5 files changed, 91 insertions(+), 18 deletions(-) create mode 100644 app/src/main/java/com/kdt/minecraftegl/SurfaceUtils.java diff --git a/app/build.gradle b/app/build.gradle index d2e9832be..0136afd24 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "net.kdt.pojavlaunch" minSdkVersion 21 targetSdkVersion 26 - versionCode 156234 - versionName "2.4.2_preview11b3_6396b_20200415" + versionCode 156235 + versionName "2.4.2_preview11b3_6397b_20200418" } buildTypes { diff --git a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java index a5cad47ad..6836657e0 100644 --- a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java +++ b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java @@ -9,13 +9,19 @@ import javax.microedition.khronos.egl.*; import net.kdt.pojavlaunch.*; import org.lwjgl.opengl.*; import dalvik.system.*; +import static org.lwjgl.opengl.AndroidContextImplementation.*; +import android.view.*; +import net.kdt.pojavlaunch.exit.*; public class MinecraftEGLInitializer { public static void main(String[] args) throws Throwable { try { - // long eglAddress = Long.parseLong(args[0]); - + // long surfaceAddress = Long.parseLong(args[0]); + + // Disable for testing + // ExitManager.disableSystemExit(); + MainActivity.launchClassPath = args[0]; MainActivity.launchOptimizedDirectory = args[1]; MainActivity.launchLibrarySearchPath = args[2]; @@ -24,7 +30,7 @@ public class MinecraftEGLInitializer String minecraftMainClass = args[3]; List minecraftArgs = new ArrayList(); - for (int i = 4; i < args.length; i++) { + for (int i = 5; i < args.length; i++) { if (args[i] != null && !args[i].isEmpty()) minecraftArgs.add(args[i]); } @@ -32,15 +38,28 @@ public class MinecraftEGLInitializer initEnvs(); EGL10 egl; - AndroidContextImplementation.theEgl = egl = (EGL10) EGLContext.getEGL(); // AndroidContextImplementation.context.getEGL(); - AndroidContextImplementation.context = egl.eglGetCurrentContext(); // new EGLContextImpl(eglAddress); - AndroidContextImplementation.display = egl.eglGetCurrentDisplay(); - AndroidContextImplementation.read = egl.eglGetCurrentSurface(EGL10.EGL_READ); - AndroidContextImplementation.draw = egl.eglGetCurrentSurface(EGL10.EGL_DRAW); + theEgl = egl = (EGL10) EGLContext.getEGL(); // context.getEGL(); + context = egl.eglGetCurrentContext(); // new EGLContextImpl(eglAddress); + display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); + read = egl.eglGetCurrentSurface(EGL10.EGL_READ); + draw = egl.eglGetCurrentSurface(EGL10.EGL_DRAW); - boolean makeCurrBool = AndroidContextImplementation.theEgl.eglMakeCurrent(AndroidContextImplementation.display, AndroidContextImplementation.read, AndroidContextImplementation.draw, AndroidContextImplementation.context); - System.out.println("Gave up context: " + AndroidContextImplementation.context + ", makeCurrent: " + Boolean.toString(makeCurrBool)); - System.out.println("eglGetError: " + Integer.toString(egl.eglGetError())); + int[] attribs = { + EGL10.EGL_RED_SIZE, 8, + EGL10.EGL_GREEN_SIZE, 8, + EGL10.EGL_BLUE_SIZE, 8, + EGL10.EGL_DEPTH_SIZE, 16, // 0 + EGL10.EGL_NONE + }; + + egl.eglInitialize(display, new int[]{0, 0}); + EGLConfig config = getEglConfig(egl, display, attribs); + // egl.eglCreateWindowSurface(display, config, SurfaceUtils.createSurfaceByAddress(surfaceAddress), null); + + boolean makeCurrBool = theEgl.eglMakeCurrent(display, read, draw, context); + System.out.println("Gave up context: " + context + ", makeCurrent: " + Boolean.toString(makeCurrBool)); + int eglGetError = egl.eglGetError(); + System.out.println("eglGetError: " + Integer.toString(eglGetError) + ", success: " + Boolean.toString(eglGetError == EGL10.EGL_SUCCESS)); System.out.println("user.home: " + System.getProperty("user.home")); DexClassLoader classLoader = new DexClassLoader(args[0], args[1], args[2], MinecraftEGLInitializer.class.getClassLoader()); @@ -53,6 +72,22 @@ public class MinecraftEGLInitializer } } + private static EGLConfig getEglConfig(EGL10 egl, EGLDisplay eglDisplay, int[] configAttributes) { + EGLConfig[] configs = new EGLConfig[1]; + int[] numConfigs = new int[1]; + if (!egl.eglChooseConfig(eglDisplay, configAttributes, configs, configs.length, numConfigs)) { + throw new RuntimeException( + "eglChooseConfig failed: 0x" + Integer.toHexString(egl.eglGetError())); + } + if (numConfigs[0] <= 0) { + throw new RuntimeException("Unable to find any matching EGL config"); + } + final EGLConfig eglConfig = configs[0]; + if (eglConfig == null) { + throw new RuntimeException("eglChooseConfig returned null"); + } + return eglConfig; + } public static void forceUserHome(String s) throws Exception { Properties props = System.getProperties(); diff --git a/app/src/main/java/com/kdt/minecraftegl/SurfaceUtils.java b/app/src/main/java/com/kdt/minecraftegl/SurfaceUtils.java new file mode 100644 index 000000000..58eab0a2b --- /dev/null +++ b/app/src/main/java/com/kdt/minecraftegl/SurfaceUtils.java @@ -0,0 +1,32 @@ +package com.kdt.minecraftegl; +import android.view.*; +import java.lang.reflect.*; + +public class SurfaceUtils +{ + public static long getSurfaceAddress(Surface surface) { + try { + Field field = surface.getClass().getDeclaredField("mNativeObject"); + field.setAccessible(true); + return field.get(surface); + } catch (Throwable th) { + System.err.println("Unable to get surface address!"); + th.printStackTrace(); + } + + return -1; + } + + public static Surface createSurfaceByAddress(long surfaceAddress) { + try { + Constructor c = Surface.class.getDeclaredConstructor(long.class); + c.setAccessible(true); + return (Surface) c.newInstance(surfaceAddress); + } catch (Throwable th) { + System.err.println("Unable to create surface by address!"); + th.printStackTrace(); + } + + return null; + } +} diff --git a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java index d045b9e71..992c81849 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java +++ b/app/src/main/java/net/kdt/pojavlaunch/MainActivity.java @@ -38,6 +38,7 @@ import android.app.AlertDialog; import android.graphics.drawable.Drawable; import net.kdt.pojavlaunch.value.customcontrols.*; import com.google.android.gles_jni.*; +import com.kdt.minecraftegl.*; public class MainActivity extends AppCompatActivity implements OnTouchListener, OnClickListener { @@ -870,21 +871,23 @@ public class MainActivity extends AppCompatActivity implements OnTouchListener, public void onPrintLine(String text) { appendToLog(text); } - }); + }, "sh"); shell.initInputStream(this); shell.writeToProcess("base=/system"); shell.writeToProcess("export CLASSPATH=" + getApplicationInfo().publicSourceDir); // ":" + launchClassPath + "\n"); + shell.writeToProcess("export HOME=" + Tools.MAIN_PATH); String argStr = ""; for (String arg : launchArgs) { argStr = argStr + " " + arg; } + // app_process32 because this app is 32-bit only. String execAppProcessStr = ( "exec app_process32 " + - "-Xmx512M " + + "-Xmx512M " + // Max heap "-Djava.library.path=/system/lib:" + getApplicationInfo().nativeLibraryDir + " " + "$base/bin com.kdt.minecraftegl.MinecraftEGLInitializer " + - launchClassPath + " " + launchOptimizedDirectory + " " + launchLibrarySearchPath + " " + + /* Long.toString(SurfaceUtils.getSurfaceAddress(((SurfaceView) glSurfaceView).getHolder().getSurface())) + "" + */ launchClassPath + " " + launchOptimizedDirectory + " " + launchLibrarySearchPath + " " + this.mVersionInfo.mainClass + argStr ); System.out.println(execAppProcessStr); diff --git a/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java b/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java index 66e8a8c31..1614e66c7 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java +++ b/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java @@ -50,8 +50,11 @@ public class ExitManager { { // changeRuntimeExitDisabled(false); - - Runtime.getRuntime().removeShutdownHook(exitTrappedHook); + try { + Runtime.getRuntime().removeShutdownHook(exitTrappedHook); + } catch (Throwable th) { + stopExitLoop(); + } } // It's not safe. Add/Remove shutdown hooks will cause error. From ee30c7e83ef83f1fa04528a1a217b562516c3868 Mon Sep 17 00:00:00 2001 From: khanhduytran0 Date: Sun, 19 Apr 2020 10:16:05 +0700 Subject: [PATCH 04/10] More attempt hack EGL --- .../minecraftegl/MinecraftEGLInitializer.java | 21 +++++++------------ .../net/kdt/pojavlaunch/exit/ExitManager.java | 7 ++++++- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java index 6836657e0..82d36bc2e 100644 --- a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java +++ b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java @@ -12,6 +12,7 @@ import dalvik.system.*; import static org.lwjgl.opengl.AndroidContextImplementation.*; import android.view.*; import net.kdt.pojavlaunch.exit.*; +import javax.microedition.khronos.opengles.*; public class MinecraftEGLInitializer { @@ -20,7 +21,7 @@ public class MinecraftEGLInitializer // long surfaceAddress = Long.parseLong(args[0]); // Disable for testing - // ExitManager.disableSystemExit(); + ExitManager.disableSystemExit(); MainActivity.launchClassPath = args[0]; MainActivity.launchOptimizedDirectory = args[1]; @@ -44,29 +45,23 @@ public class MinecraftEGLInitializer read = egl.eglGetCurrentSurface(EGL10.EGL_READ); draw = egl.eglGetCurrentSurface(EGL10.EGL_DRAW); - int[] attribs = { - EGL10.EGL_RED_SIZE, 8, - EGL10.EGL_GREEN_SIZE, 8, - EGL10.EGL_BLUE_SIZE, 8, - EGL10.EGL_DEPTH_SIZE, 16, // 0 - EGL10.EGL_NONE - }; - - egl.eglInitialize(display, new int[]{0, 0}); - EGLConfig config = getEglConfig(egl, display, attribs); - // egl.eglCreateWindowSurface(display, config, SurfaceUtils.createSurfaceByAddress(surfaceAddress), null); - boolean makeCurrBool = theEgl.eglMakeCurrent(display, read, draw, context); System.out.println("Gave up context: " + context + ", makeCurrent: " + Boolean.toString(makeCurrBool)); int eglGetError = egl.eglGetError(); System.out.println("eglGetError: " + Integer.toString(eglGetError) + ", success: " + Boolean.toString(eglGetError == EGL10.EGL_SUCCESS)); System.out.println("user.home: " + System.getProperty("user.home")); + GL10 gl = ((GL10) context.getGL()); + gl.glColor4f(0.5f, 0.5f, 0.5f, 0.5f); + gl.glClear(GL10.GL_COLOR_BUFFER_BIT); + int glErr = gl.glGetError(); + DexClassLoader classLoader = new DexClassLoader(args[0], args[1], args[2], MinecraftEGLInitializer.class.getClassLoader()); Class minecraftClass = classLoader.loadClass(minecraftMainClass); Method minecraftMethod = minecraftClass.getMethod("main", String[].class); minecraftMethod.invoke(null, new Object[]{minecraftArgs.toArray(new String[0])}); } catch (Throwable th) { + System.err.println("UNEXCEPTED SHUTTING DOWN"); th.printStackTrace(); System.exit(1); } diff --git a/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java b/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java index 1614e66c7..7e88f7d6c 100644 --- a/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java +++ b/app/src/main/java/net/kdt/pojavlaunch/exit/ExitManager.java @@ -7,7 +7,7 @@ public class ExitManager { private static ExitTrappedListener listener; private static Thread exitTrappedHook = new Thread(new Runnable(){ - + private boolean isFirst = true; @Override public void run() { @@ -16,6 +16,11 @@ public class ExitManager { // if (stopLoop) stopLoop = false; while (true) { + if (isFirst) { + isFirst = false; + System.out.println("Program attempt to exit!"); + } + if (stopLoop) { stopLoop = false; break; From 82778a6352cb08e0ea918388e4641b30f9d167ce Mon Sep 17 00:00:00 2001 From: khanhduytran0 Date: Sun, 19 Apr 2020 13:25:08 +0700 Subject: [PATCH 05/10] add gen --- app/build/gen/android/support/compat/R.java | 11250 +++++++++++++ app/build/gen/android/support/coreui/R.java | 11250 +++++++++++++ .../gen/android/support/coreutils/R.java | 11250 +++++++++++++ app/build/gen/android/support/design/R.java | 11250 +++++++++++++ app/build/gen/android/support/fragment/R.java | 11250 +++++++++++++ .../android/support/graphics/drawable/R.java | 11250 +++++++++++++ .../support/graphics/drawable/animated/R.java | 11250 +++++++++++++ .../gen/android/support/mediacompat/R.java | 11250 +++++++++++++ .../gen/android/support/transition/R.java | 11250 +++++++++++++ .../gen/android/support/v14/preference/R.java | 13342 ++++++++++++++++ app/build/gen/android/support/v4/R.java | 11250 +++++++++++++ .../gen/android/support/v7/appcompat/R.java | 11250 +++++++++++++ .../gen/android/support/v7/preference/R.java | 13342 ++++++++++++++++ .../android/support/v7/recyclerview/R.java | 11250 +++++++++++++ .../gen/net/kdt/pojavlaunch/BuildConfig.java | 6 + app/build/gen/net/kdt/pojavlaunch/R.java | 11250 +++++++++++++ 16 files changed, 172940 insertions(+) create mode 100644 app/build/gen/android/support/compat/R.java create mode 100644 app/build/gen/android/support/coreui/R.java create mode 100644 app/build/gen/android/support/coreutils/R.java create mode 100644 app/build/gen/android/support/design/R.java create mode 100644 app/build/gen/android/support/fragment/R.java create mode 100644 app/build/gen/android/support/graphics/drawable/R.java create mode 100644 app/build/gen/android/support/graphics/drawable/animated/R.java create mode 100644 app/build/gen/android/support/mediacompat/R.java create mode 100644 app/build/gen/android/support/transition/R.java create mode 100644 app/build/gen/android/support/v14/preference/R.java create mode 100644 app/build/gen/android/support/v4/R.java create mode 100644 app/build/gen/android/support/v7/appcompat/R.java create mode 100644 app/build/gen/android/support/v7/preference/R.java create mode 100644 app/build/gen/android/support/v7/recyclerview/R.java create mode 100644 app/build/gen/net/kdt/pojavlaunch/BuildConfig.java create mode 100644 app/build/gen/net/kdt/pojavlaunch/R.java diff --git a/app/build/gen/android/support/compat/R.java b/app/build/gen/android/support/compat/R.java new file mode 100644 index 000000000..01a408881 --- /dev/null +++ b/app/build/gen/android/support/compat/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.compat; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/coreui/R.java b/app/build/gen/android/support/coreui/R.java new file mode 100644 index 000000000..a7653990f --- /dev/null +++ b/app/build/gen/android/support/coreui/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.coreui; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/coreutils/R.java b/app/build/gen/android/support/coreutils/R.java new file mode 100644 index 000000000..906ebdfc0 --- /dev/null +++ b/app/build/gen/android/support/coreutils/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.coreutils; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/design/R.java b/app/build/gen/android/support/design/R.java new file mode 100644 index 000000000..516618481 --- /dev/null +++ b/app/build/gen/android/support/design/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.design; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/fragment/R.java b/app/build/gen/android/support/fragment/R.java new file mode 100644 index 000000000..74737300f --- /dev/null +++ b/app/build/gen/android/support/fragment/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.fragment; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/graphics/drawable/R.java b/app/build/gen/android/support/graphics/drawable/R.java new file mode 100644 index 000000000..21e3062d7 --- /dev/null +++ b/app/build/gen/android/support/graphics/drawable/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.graphics.drawable; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/graphics/drawable/animated/R.java b/app/build/gen/android/support/graphics/drawable/animated/R.java new file mode 100644 index 000000000..ff847ea10 --- /dev/null +++ b/app/build/gen/android/support/graphics/drawable/animated/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.graphics.drawable.animated; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/mediacompat/R.java b/app/build/gen/android/support/mediacompat/R.java new file mode 100644 index 000000000..6df601365 --- /dev/null +++ b/app/build/gen/android/support/mediacompat/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.mediacompat; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/transition/R.java b/app/build/gen/android/support/transition/R.java new file mode 100644 index 000000000..ad5421502 --- /dev/null +++ b/app/build/gen/android/support/transition/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.transition; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/v14/preference/R.java b/app/build/gen/android/support/v14/preference/R.java new file mode 100644 index 000000000..d8ef31719 --- /dev/null +++ b/app/build/gen/android/support/v14/preference/R.java @@ -0,0 +1,13342 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v14.preference; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0e0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int adjustable=0x7f010188; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerAbove=0x7f010167; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerAfterLastItem=0x7f01016b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerBelow=0x7f010168; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f010032; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f010005; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010007; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010027; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f010021; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkBoxPreferenceStyle=0x7f010177; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f01000e; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010048; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". + */ + public static final int defaultValue=0x7f010165; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dependency=0x7f010163; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogIcon=0x7f010156; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogLayout=0x7f010159; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogMessage=0x7f010155; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogPreferenceStyle=0x7f010179; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogTitle=0x7f010154; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int disableDependentsState=0x7f010153; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropdownPreferenceStyle=0x7f01017c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextPreferenceStyle=0x7f01017a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int enabled=0x7f010161; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entries=0x7f01015a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entryValues=0x7f01015b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010000; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010008; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010009; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f01000a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f01000d; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f010025; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010193; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f01018c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01018f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010190; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010191; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f01018d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01018e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010192; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010194; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f01002a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fragment=0x7f01015f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010030; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f01004c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f010044; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconSpaceReserved=0x7f01016a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f010031; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f01002e; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f01002c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f01002f; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f01002d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int key=0x7f01015c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f01001c; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f01001b; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010017; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010018; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010020; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f01001f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f01001d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f010003; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxHeight=0x7f01016e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxWidth=0x7f01016d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f01002b; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int min=0x7f010186; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int negativeButtonText=0x7f010158; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int order=0x7f01015e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int orderingFromXml=0x7f01016c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f01004e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f01004d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010050; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f010051; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int persistent=0x7f010164; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int positiveButtonText=0x7f010157; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceActivityStyle=0x7f010171; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceCategoryStyle=0x7f010174; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentCompatStyle=0x7f010173; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentListStyle=0x7f010181; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preferenceFragmentPaddingSide=0x7f010182; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentStyle=0x7f010172; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceHeaderPanelStyle=0x7f01017f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceInformationStyle=0x7f010176; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceLayoutChild=0x7f01017d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceListStyle=0x7f010180; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferencePanelStyle=0x7f01017e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceScreenStyle=0x7f010170; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceStyle=0x7f010175; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceTheme=0x7f01016f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ringtonePreferenceStyle=0x7f01017b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f010024; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f010013; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f010012; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int seekBarIncrement=0x7f010187; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarPreferenceStyle=0x7f010185; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int selectable=0x7f010162; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shouldDisableView=0x7f010166; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showSeekBarValue=0x7f010189; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int singleLineTitle=0x7f010169; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010053; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f010002; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f01001a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010010; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summary=0x7f01015d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOff=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOn=0x7f010151; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchPreferenceCompatStyle=0x7f010184; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchPreferenceStyle=0x7f010183; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOff=0x7f01018b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOn=0x7f01018a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010037; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f010036; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010039; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f010034; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f01003b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f01003a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010038; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f010043; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f010042; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f01003f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010040; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f01003e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f01003c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f01003d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f010023; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f010016; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010028; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int widgetLayout=0x7f010160; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int yesNoPreferenceStyle=0x7f010178; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0d0000; + public static final int abc_allow_stacked_button_bar=0x7f0d0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0048; + public static final int abc_background_cache_hint_selector_material_light=0x7f0b0049; + public static final int abc_btn_colored_borderless_text_material=0x7f0b004a; + public static final int abc_btn_colored_text_material=0x7f0b004b; + public static final int abc_color_highlight_material=0x7f0b004c; + public static final int abc_hint_foreground_material_dark=0x7f0b004d; + public static final int abc_hint_foreground_material_light=0x7f0b004e; + public static final int abc_input_method_navigation_guard=0x7f0b000a; + public static final int abc_primary_text_disable_only_material_dark=0x7f0b004f; + public static final int abc_primary_text_disable_only_material_light=0x7f0b0050; + public static final int abc_primary_text_material_dark=0x7f0b0051; + public static final int abc_primary_text_material_light=0x7f0b0052; + public static final int abc_search_url_text=0x7f0b0053; + public static final int abc_search_url_text_normal=0x7f0b000b; + public static final int abc_search_url_text_pressed=0x7f0b000c; + public static final int abc_search_url_text_selected=0x7f0b000d; + public static final int abc_secondary_text_material_dark=0x7f0b0054; + public static final int abc_secondary_text_material_light=0x7f0b0055; + public static final int abc_tint_btn_checkable=0x7f0b0056; + public static final int abc_tint_default=0x7f0b0057; + public static final int abc_tint_edittext=0x7f0b0058; + public static final int abc_tint_seek_thumb=0x7f0b0059; + public static final int abc_tint_spinner=0x7f0b005a; + public static final int abc_tint_switch_track=0x7f0b005b; + public static final int accent_material_dark=0x7f0b000e; + public static final int accent_material_light=0x7f0b000f; + public static final int background_floating_material_dark=0x7f0b0010; + public static final int background_floating_material_light=0x7f0b0011; + public static final int background_material_dark=0x7f0b0012; + public static final int background_material_light=0x7f0b0013; + public static final int bright_foreground_disabled_material_dark=0x7f0b0014; + public static final int bright_foreground_disabled_material_light=0x7f0b0015; + public static final int bright_foreground_inverse_material_dark=0x7f0b0016; + public static final int bright_foreground_inverse_material_light=0x7f0b0017; + public static final int bright_foreground_material_dark=0x7f0b0018; + public static final int bright_foreground_material_light=0x7f0b0019; + public static final int button_material_dark=0x7f0b001a; + public static final int button_material_light=0x7f0b001b; + public static final int design_bottom_navigation_shadow_color=0x7f0b0000; + public static final int design_error=0x7f0b005c; + public static final int design_fab_shadow_end_color=0x7f0b0001; + public static final int design_fab_shadow_mid_color=0x7f0b0002; + public static final int design_fab_shadow_start_color=0x7f0b0003; + public static final int design_fab_stroke_end_inner_color=0x7f0b0004; + public static final int design_fab_stroke_end_outer_color=0x7f0b0005; + public static final int design_fab_stroke_top_inner_color=0x7f0b0006; + public static final int design_fab_stroke_top_outer_color=0x7f0b0007; + public static final int design_snackbar_background_color=0x7f0b0008; + public static final int design_tint_password_toggle=0x7f0b005d; + public static final int dim_foreground_disabled_material_dark=0x7f0b001c; + public static final int dim_foreground_disabled_material_light=0x7f0b001d; + public static final int dim_foreground_material_dark=0x7f0b001e; + public static final int dim_foreground_material_light=0x7f0b001f; + public static final int error_color_material=0x7f0b0020; + public static final int foreground_material_dark=0x7f0b0021; + public static final int foreground_material_light=0x7f0b0022; + public static final int highlighted_text_material_dark=0x7f0b0023; + public static final int highlighted_text_material_light=0x7f0b0024; + public static final int material_blue_grey_800=0x7f0b0025; + public static final int material_blue_grey_900=0x7f0b0026; + public static final int material_blue_grey_950=0x7f0b0027; + public static final int material_deep_teal_200=0x7f0b0028; + public static final int material_deep_teal_500=0x7f0b0029; + public static final int material_grey_100=0x7f0b002a; + public static final int material_grey_300=0x7f0b002b; + public static final int material_grey_50=0x7f0b002c; + public static final int material_grey_600=0x7f0b002d; + public static final int material_grey_800=0x7f0b002e; + public static final int material_grey_850=0x7f0b002f; + public static final int material_grey_900=0x7f0b0030; + public static final int notification_action_color_filter=0x7f0b0046; + public static final int notification_icon_bg_color=0x7f0b0047; + public static final int notification_material_background_media_default_color=0x7f0b0045; + public static final int preference_fallback_accent_color=0x7f0b0009; + public static final int primary_dark_material_dark=0x7f0b0031; + public static final int primary_dark_material_light=0x7f0b0032; + public static final int primary_material_dark=0x7f0b0033; + public static final int primary_material_light=0x7f0b0034; + public static final int primary_text_default_material_dark=0x7f0b0035; + public static final int primary_text_default_material_light=0x7f0b0036; + public static final int primary_text_disabled_material_dark=0x7f0b0037; + public static final int primary_text_disabled_material_light=0x7f0b0038; + public static final int ripple_material_dark=0x7f0b0039; + public static final int ripple_material_light=0x7f0b003a; + public static final int secondary_text_default_material_dark=0x7f0b003b; + public static final int secondary_text_default_material_light=0x7f0b003c; + public static final int secondary_text_disabled_material_dark=0x7f0b003d; + public static final int secondary_text_disabled_material_light=0x7f0b003e; + public static final int switch_thumb_disabled_material_dark=0x7f0b003f; + public static final int switch_thumb_disabled_material_light=0x7f0b0040; + public static final int switch_thumb_material_dark=0x7f0b005e; + public static final int switch_thumb_material_light=0x7f0b005f; + public static final int switch_thumb_normal_material_dark=0x7f0b0041; + public static final int switch_thumb_normal_material_light=0x7f0b0042; + public static final int tooltip_background_dark=0x7f0b0043; + public static final int tooltip_background_light=0x7f0b0044; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f090038; + public static final int abc_action_bar_content_inset_with_nav=0x7f090039; + public static final int abc_action_bar_default_height_material=0x7f09002d; + public static final int abc_action_bar_default_padding_end_material=0x7f09003a; + public static final int abc_action_bar_default_padding_start_material=0x7f09003b; + public static final int abc_action_bar_elevation_material=0x7f09003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f09003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f09003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f090040; + public static final int abc_action_bar_progress_bar_size=0x7f09002e; + public static final int abc_action_bar_stacked_max_height=0x7f090041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f090042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f090043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f090044; + public static final int abc_action_button_min_height_material=0x7f090045; + public static final int abc_action_button_min_width_material=0x7f090046; + public static final int abc_action_button_min_width_overflow_material=0x7f090047; + public static final int abc_alert_dialog_button_bar_height=0x7f09002c; + public static final int abc_button_inset_horizontal_material=0x7f090048; + public static final int abc_button_inset_vertical_material=0x7f090049; + public static final int abc_button_padding_horizontal_material=0x7f09004a; + public static final int abc_button_padding_vertical_material=0x7f09004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f09004c; + public static final int abc_config_prefDialogWidth=0x7f090031; + public static final int abc_control_corner_material=0x7f09004d; + public static final int abc_control_inset_material=0x7f09004e; + public static final int abc_control_padding_material=0x7f09004f; + public static final int abc_dialog_fixed_height_major=0x7f090032; + public static final int abc_dialog_fixed_height_minor=0x7f090033; + public static final int abc_dialog_fixed_width_major=0x7f090034; + public static final int abc_dialog_fixed_width_minor=0x7f090035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f090050; + public static final int abc_dialog_list_padding_top_no_title=0x7f090051; + public static final int abc_dialog_min_width_major=0x7f090036; + public static final int abc_dialog_min_width_minor=0x7f090037; + public static final int abc_dialog_padding_material=0x7f090052; + public static final int abc_dialog_padding_top_material=0x7f090053; + public static final int abc_dialog_title_divider_material=0x7f090054; + public static final int abc_disabled_alpha_material_dark=0x7f090055; + public static final int abc_disabled_alpha_material_light=0x7f090056; + public static final int abc_dropdownitem_icon_width=0x7f090057; + public static final int abc_dropdownitem_text_padding_left=0x7f090058; + public static final int abc_dropdownitem_text_padding_right=0x7f090059; + public static final int abc_edit_text_inset_bottom_material=0x7f09005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f09005b; + public static final int abc_edit_text_inset_top_material=0x7f09005c; + public static final int abc_floating_window_z=0x7f09005d; + public static final int abc_list_item_padding_horizontal_material=0x7f09005e; + public static final int abc_panel_menu_list_width=0x7f09005f; + public static final int abc_progress_bar_height_material=0x7f090060; + public static final int abc_search_view_preferred_height=0x7f090061; + public static final int abc_search_view_preferred_width=0x7f090062; + public static final int abc_seekbar_track_background_height_material=0x7f090063; + public static final int abc_seekbar_track_progress_height_material=0x7f090064; + public static final int abc_select_dialog_padding_start_material=0x7f090065; + public static final int abc_switch_padding=0x7f09003c; + public static final int abc_text_size_body_1_material=0x7f090066; + public static final int abc_text_size_body_2_material=0x7f090067; + public static final int abc_text_size_button_material=0x7f090068; + public static final int abc_text_size_caption_material=0x7f090069; + public static final int abc_text_size_display_1_material=0x7f09006a; + public static final int abc_text_size_display_2_material=0x7f09006b; + public static final int abc_text_size_display_3_material=0x7f09006c; + public static final int abc_text_size_display_4_material=0x7f09006d; + public static final int abc_text_size_headline_material=0x7f09006e; + public static final int abc_text_size_large_material=0x7f09006f; + public static final int abc_text_size_medium_material=0x7f090070; + public static final int abc_text_size_menu_header_material=0x7f090071; + public static final int abc_text_size_menu_material=0x7f090072; + public static final int abc_text_size_small_material=0x7f090073; + public static final int abc_text_size_subhead_material=0x7f090074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f09002f; + public static final int abc_text_size_title_material=0x7f090075; + public static final int abc_text_size_title_material_toolbar=0x7f090030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f09009f; + public static final int activity_vertical_margin=0x7f0900a0; + public static final int compat_button_inset_horizontal_material=0x7f09008f; + public static final int compat_button_inset_vertical_material=0x7f090090; + public static final int compat_button_padding_horizontal_material=0x7f090091; + public static final int compat_button_padding_vertical_material=0x7f090092; + public static final int compat_control_corner_material=0x7f090093; + public static final int design_appbar_elevation=0x7f090008; + public static final int design_bottom_navigation_active_item_max_width=0x7f090009; + public static final int design_bottom_navigation_active_text_size=0x7f09000a; + public static final int design_bottom_navigation_elevation=0x7f09000b; + public static final int design_bottom_navigation_height=0x7f09000c; + public static final int design_bottom_navigation_item_max_width=0x7f09000d; + public static final int design_bottom_navigation_item_min_width=0x7f09000e; + public static final int design_bottom_navigation_margin=0x7f09000f; + public static final int design_bottom_navigation_shadow_height=0x7f090010; + public static final int design_bottom_navigation_text_size=0x7f090011; + public static final int design_bottom_sheet_modal_elevation=0x7f090012; + public static final int design_bottom_sheet_peek_height_min=0x7f090013; + public static final int design_fab_border_width=0x7f090014; + public static final int design_fab_elevation=0x7f090015; + public static final int design_fab_image_size=0x7f090016; + public static final int design_fab_size_mini=0x7f090017; + public static final int design_fab_size_normal=0x7f090018; + public static final int design_fab_translation_z_pressed=0x7f090019; + public static final int design_navigation_elevation=0x7f09001a; + public static final int design_navigation_icon_padding=0x7f09001b; + public static final int design_navigation_icon_size=0x7f09001c; + public static final int design_navigation_max_width=0x7f090000; + public static final int design_navigation_padding_bottom=0x7f09001d; + public static final int design_navigation_separator_vertical_padding=0x7f09001e; + public static final int design_snackbar_action_inline_max_width=0x7f090001; + public static final int design_snackbar_background_corner_radius=0x7f090002; + public static final int design_snackbar_elevation=0x7f09001f; + public static final int design_snackbar_extra_spacing_horizontal=0x7f090003; + public static final int design_snackbar_max_width=0x7f090004; + public static final int design_snackbar_min_width=0x7f090005; + public static final int design_snackbar_padding_horizontal=0x7f090020; + public static final int design_snackbar_padding_vertical=0x7f090021; + public static final int design_snackbar_padding_vertical_2lines=0x7f090006; + public static final int design_snackbar_text_size=0x7f090022; + public static final int design_tab_max_width=0x7f090023; + public static final int design_tab_scrollable_min_width=0x7f090007; + public static final int design_tab_text_size=0x7f090024; + public static final int design_tab_text_size_2line=0x7f090025; + public static final int disabled_alpha_material_dark=0x7f090076; + public static final int disabled_alpha_material_light=0x7f090077; + public static final int empty_icon_height=0x7f0900a9; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0900a8; + public static final int fastscroll_default_thickness=0x7f090026; + public static final int fastscroll_margin=0x7f090027; + public static final int fastscroll_minimum_range=0x7f090028; + public static final int highlight_alpha_material_colored=0x7f090078; + public static final int highlight_alpha_material_dark=0x7f090079; + public static final int highlight_alpha_material_light=0x7f09007a; + public static final int hint_alpha_material_dark=0x7f09007b; + public static final int hint_alpha_material_light=0x7f09007c; + public static final int hint_pressed_alpha_material_dark=0x7f09007d; + public static final int hint_pressed_alpha_material_light=0x7f09007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090029; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f09002a; + public static final int item_touch_helper_swipe_escape_velocity=0x7f09002b; + public static final int navigation_header_height=0x7f0900aa; + public static final int navigation_item_height=0x7f0900ab; + public static final int navigation_item_icon_size=0x7f0900ac; + public static final int notification_action_icon_size=0x7f090094; + public static final int notification_action_text_size=0x7f090095; + public static final int notification_big_circle_margin=0x7f090096; + public static final int notification_content_margin_start=0x7f09008c; + public static final int notification_large_icon_height=0x7f090097; + public static final int notification_large_icon_width=0x7f090098; + public static final int notification_main_column_padding_top=0x7f09008d; + public static final int notification_media_narrow_margin=0x7f09008e; + public static final int notification_right_icon_size=0x7f090099; + public static final int notification_right_side_padding_top=0x7f09008b; + public static final int notification_small_icon_background_padding=0x7f09009a; + public static final int notification_small_icon_size_as_large=0x7f09009b; + public static final int notification_subtext_size=0x7f09009c; + public static final int notification_top_pad=0x7f09009d; + public static final int notification_top_pad_large_text=0x7f09009e; + public static final int padding_extra_extra_large=0x7f0900a7; + public static final int padding_extra_large=0x7f0900a6; + public static final int padding_large=0x7f0900a5; + public static final int padding_medium=0x7f0900a4; + public static final int padding_small=0x7f0900a3; + /** Padding + */ + public static final int padding_tiny=0x7f0900a1; + public static final int padding_tiny_plus_one=0x7f0900a2; + public static final int preference_icon_minWidth=0x7f090087; + public static final int preference_seekbar_padding_end=0x7f090088; + public static final int preference_seekbar_padding_start=0x7f090089; + public static final int preference_seekbar_value_width=0x7f09008a; + public static final int tooltip_corner_radius=0x7f09007f; + public static final int tooltip_horizontal_padding=0x7f090080; + public static final int tooltip_margin=0x7f090081; + public static final int tooltip_precise_anchor_extra_offset=0x7f090082; + public static final int tooltip_precise_anchor_threshold=0x7f090083; + public static final int tooltip_vertical_padding=0x7f090084; + public static final int tooltip_y_offset_non_touch=0x7f090085; + public static final int tooltip_y_offset_touch=0x7f090086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007c; + public static final int notification_template_icon_low_bg=0x7f02007d; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int preference_list_divider_material=0x7f020078; + public static final int toggle_log=0x7f020079; + public static final int tooltip_frame_dark=0x7f02007a; + public static final int tooltip_frame_light=0x7f02007b; + } + public static final class id { + public static final int ALT=0x7f07004a; + public static final int CTRL=0x7f07004b; + public static final int FUNCTION=0x7f07004c; + public static final int META=0x7f07004d; + public static final int SHIFT=0x7f07004e; + public static final int SYM=0x7f07004f; + public static final int action0=0x7f0700d8; + public static final int action_bar=0x7f07007b; + public static final int action_bar_activity_content=0x7f07000e; + public static final int action_bar_container=0x7f07007a; + public static final int action_bar_root=0x7f070076; + public static final int action_bar_spinner=0x7f07000f; + public static final int action_bar_subtitle=0x7f07005a; + public static final int action_bar_title=0x7f070059; + public static final int action_container=0x7f0700d5; + public static final int action_context_bar=0x7f07007c; + public static final int action_divider=0x7f0700dc; + public static final int action_image=0x7f0700d6; + public static final int action_menu_divider=0x7f070010; + public static final int action_menu_presenter=0x7f070011; + public static final int action_mode_bar=0x7f070078; + public static final int action_mode_bar_stub=0x7f070077; + public static final int action_mode_close_button=0x7f07005b; + public static final int action_text=0x7f0700d7; + public static final int actions=0x7f0700e5; + public static final int activity_chooser_view_content=0x7f07005c; + public static final int add=0x7f070045; + public static final int alertTitle=0x7f07006f; + public static final int all=0x7f070033; + public static final int always=0x7f070050; + public static final int async=0x7f070055; + public static final int auto=0x7f070021; + public static final int beginning=0x7f070048; + public static final int blocking=0x7f070056; + public static final int bottom=0x7f070022; + public static final int bottombar_author_logo=0x7f07008b; + public static final int bottombar_version_view=0x7f07008a; + public static final int buttonPanel=0x7f070062; + public static final int cancel_action=0x7f0700d9; + public static final int center=0x7f070023; + public static final int center_horizontal=0x7f070024; + public static final int center_vertical=0x7f070025; + public static final int checkbox=0x7f070072; + public static final int chronometer=0x7f0700e1; + public static final int clip_horizontal=0x7f07002f; + public static final int clip_vertical=0x7f070030; + public static final int collapseActionView=0x7f070051; + public static final int container=0x7f070094; + public static final int contentPanel=0x7f070065; + public static final int content_frame=0x7f0700b9; + public static final int content_log_close_button=0x7f0700d0; + public static final int content_log_layout=0x7f0700cf; + public static final int content_log_scroll=0x7f0700d2; + public static final int content_log_toggle_log=0x7f0700d1; + public static final int content_text_debug=0x7f0700d3; + public static final int control_debug=0x7f0700be; + public static final int control_down=0x7f0700c4; + public static final int control_inventory=0x7f0700cc; + public static final int control_jump=0x7f0700c8; + public static final int control_keyboard=0x7f0700c0; + public static final int control_left=0x7f0700c6; + public static final int control_listplayers=0x7f0700c3; + public static final int control_mouse_toggle=0x7f0700cd; + public static final int control_primary=0x7f0700c9; + public static final int control_right=0x7f0700c7; + public static final int control_secondary=0x7f0700ca; + public static final int control_shift=0x7f0700cb; + public static final int control_talk=0x7f0700bf; + public static final int control_thirdperson=0x7f0700c1; + public static final int control_togglecontrol=0x7f0700ce; + public static final int control_up=0x7f0700c5; + public static final int control_zoom=0x7f0700c2; + public static final int controlsetting_checkbox_hidden=0x7f070091; + public static final int controlsetting_edit_name=0x7f07008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f070090; + public static final int coordinator=0x7f070095; + public static final int custom=0x7f07006c; + public static final int customPanel=0x7f07006b; + public static final int customctrl_controllayout=0x7f07008d; + public static final int customctrl_drawerlayout=0x7f07008c; + public static final int customctrl_navigation_view=0x7f07008e; + public static final int decor_content_parent=0x7f070079; + public static final int default_activity_button=0x7f07005f; + public static final int design_bottom_sheet=0x7f070097; + public static final int design_menu_item_action_area=0x7f07009e; + public static final int design_menu_item_action_area_stub=0x7f07009d; + public static final int design_menu_item_text=0x7f07009c; + public static final int design_navigation_view=0x7f07009b; + public static final int disableHome=0x7f07003f; + public static final int edit_query=0x7f07007d; + public static final int end=0x7f070026; + public static final int end_padder=0x7f0700e7; + public static final int enterAlways=0x7f07001c; + public static final int enterAlwaysCollapsed=0x7f07001d; + public static final int exitUntilCollapsed=0x7f07001e; + public static final int expand_activities_button=0x7f07005d; + public static final int expanded_menu=0x7f070071; + public static final int fill=0x7f070031; + public static final int fill_horizontal=0x7f070032; + public static final int fill_vertical=0x7f070027; + public static final int fixed=0x7f070036; + public static final int forever=0x7f070057; + public static final int ghost_view=0x7f070000; + public static final int home=0x7f070012; + public static final int homeAsUp=0x7f070040; + public static final int icon=0x7f070061; + public static final int icon_frame=0x7f0700e8; + public static final int icon_group=0x7f0700e6; + public static final int ifRoom=0x7f070052; + public static final int image=0x7f07005e; + public static final int info=0x7f0700e2; + public static final int italic=0x7f070058; + public static final int item_touch_helper_previous_elevation=0x7f07000d; + public static final int lMTVVer=0x7f0700ab; + public static final int largeLabel=0x7f070093; + public static final int launcherAccEmail=0x7f0700a0; + public static final int launcherAccOffSwitch=0x7f0700a3; + public static final int launcherAccPassword=0x7f0700a1; + public static final int launcherAccProgress=0x7f0700a4; + public static final int launcherAccRememberSwitch=0x7f0700a2; + public static final int launcherAccUsername=0x7f0700b4; + public static final int launcherMainExitbtns=0x7f0700b1; + public static final int launcherMainLeftLayout=0x7f0700aa; + public static final int launcherMainPlayButton=0x7f0700ad; + public static final int launcherMainRightLayout=0x7f0700ae; + public static final int launcherMainSelectVersion=0x7f0700ac; + public static final int launcherMainUsernameView=0x7f0700af; + public static final int launcherMainVersionView=0x7f0700b0; + public static final int launchermainFragmentTabView=0x7f0700a5; + public static final int launchermainTabLayout=0x7f0700a6; + public static final int launchermainTabPager=0x7f0700a7; + public static final int launcherupdateLogView=0x7f0700b3; + public static final int launcherupdateProgressBar=0x7f0700b2; + public static final int left=0x7f070028; + public static final int line1=0x7f070017; + public static final int line3=0x7f070018; + public static final int list=0x7f0700ea; + public static final int listMode=0x7f07003d; + public static final int list_item=0x7f070060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0700b6; + public static final int lmaintabconsoleLogTextView=0x7f0700b5; + public static final int lmaintabnewsNewsView=0x7f0700b7; + public static final int main_drawer_options=0x7f0700b8; + public static final int main_game_render_view=0x7f0700bb; + public static final int main_log_behind_GL=0x7f0700ba; + public static final int main_mouse_pointer=0x7f0700bd; + public static final int main_navigation_view=0x7f0700d4; + public static final int main_touchpad=0x7f0700bc; + public static final int masked=0x7f070102; + public static final int media_actions=0x7f0700db; + public static final int menu_ctrl_add=0x7f070104; + public static final int menu_ctrl_edit=0x7f070105; + public static final int menu_ctrl_load=0x7f070103; + public static final int menu_ctrl_remove=0x7f070106; + public static final int message=0x7f0700fa; + public static final int middle=0x7f070049; + public static final int mini=0x7f070034; + public static final int multiply=0x7f070038; + public static final int nav_customkey=0x7f07010a; + public static final int nav_debug=0x7f070109; + public static final int nav_forceclose=0x7f070107; + public static final int nav_viewlog=0x7f070108; + public static final int navigation_header_container=0x7f07009a; + public static final int never=0x7f070053; + public static final int none=0x7f07002c; + public static final int normal=0x7f070035; + public static final int notification_background=0x7f0700e4; + public static final int notification_main_column=0x7f0700de; + public static final int notification_main_column_container=0x7f0700dd; + public static final int parallax=0x7f07002d; + public static final int parentPanel=0x7f070064; + public static final int parent_matrix=0x7f070001; + public static final int pin=0x7f07002e; + public static final int progressDownloadBar=0x7f0700a8; + public static final int progressDownloadText=0x7f0700a9; + public static final int progress_circular=0x7f070013; + public static final int progress_horizontal=0x7f070014; + public static final int radio=0x7f070074; + public static final int right=0x7f070029; + public static final int right_icon=0x7f0700e3; + public static final int right_side=0x7f0700df; + public static final int save_image_matrix=0x7f070002; + public static final int save_non_transition_alpha=0x7f070003; + public static final int save_scale_type=0x7f070004; + public static final int screen=0x7f070039; + public static final int scroll=0x7f07001f; + public static final int scrollIndicatorDown=0x7f07006a; + public static final int scrollIndicatorUp=0x7f070066; + public static final int scrollView=0x7f070067; + public static final int scrollable=0x7f070037; + public static final int search_badge=0x7f07007f; + public static final int search_bar=0x7f07007e; + public static final int search_button=0x7f070080; + public static final int search_close_btn=0x7f070085; + public static final int search_edit_frame=0x7f070081; + public static final int search_go_btn=0x7f070087; + public static final int search_mag_icon=0x7f070082; + public static final int search_plate=0x7f070083; + public static final int search_src_text=0x7f070084; + public static final int search_voice_btn=0x7f070088; + public static final int seekbar=0x7f0700eb; + public static final int seekbar_value=0x7f0700ec; + public static final int select_dialog_listview=0x7f070089; + public static final int setting_progressseek_control=0x7f0700f1; + public static final int setting_progressseek_maxdxref=0x7f0700ef; + public static final int settings_checkbox_vertype_oldalpha=0x7f0700f6; + public static final int settings_checkbox_vertype_oldbeta=0x7f0700f7; + public static final int settings_checkbox_vertype_release=0x7f0700f4; + public static final int settings_checkbox_vertype_snapshot=0x7f0700f5; + public static final int settings_seekbar_controlsize=0x7f0700f0; + public static final int settings_seekbar_setmaxdxref=0x7f0700ee; + public static final int settings_switch_enablefreeform=0x7f0700f2; + public static final int settings_switch_forgetoptifpath=0x7f0700f3; + public static final int shortcut=0x7f070073; + public static final int showCustom=0x7f070041; + public static final int showHome=0x7f070042; + public static final int showTitle=0x7f070043; + public static final int smallLabel=0x7f070092; + public static final int snackbar_action=0x7f070099; + public static final int snackbar_text=0x7f070098; + public static final int snap=0x7f070020; + public static final int spacer=0x7f070063; + public static final int spinner=0x7f0700e9; + public static final int split_action_bar=0x7f070015; + public static final int src_atop=0x7f07003a; + public static final int src_in=0x7f07003b; + public static final int src_over=0x7f07003c; + public static final int start=0x7f07002a; + public static final int startscreenLinearLayout1=0x7f0700f8; + public static final int startscreenProgress=0x7f0700f9; + public static final int status_bar_latest_event_content=0x7f0700da; + public static final int submenuarrow=0x7f070075; + public static final int submit_area=0x7f070086; + public static final int switchWidget=0x7f0700ed; + public static final int tabMode=0x7f07003e; + public static final int text=0x7f070019; + public static final int text2=0x7f07001a; + public static final int textSpacerNoButtons=0x7f070069; + public static final int textSpacerNoTitle=0x7f070068; + public static final int text_input_password_toggle=0x7f07009f; + public static final int textinput_counter=0x7f07000a; + public static final int textinput_error=0x7f07000b; + public static final int time=0x7f0700e0; + public static final int title=0x7f07001b; + public static final int titleDividerNoCustom=0x7f070070; + public static final int title_template=0x7f07006e; + public static final int top=0x7f07002b; + public static final int topPanel=0x7f07006d; + public static final int topbar_earth_icon=0x7f0700fb; + public static final int topbar_help_text=0x7f0700fd; + public static final int topbar_language_text=0x7f0700fc; + public static final int topbar_logo=0x7f0700fe; + public static final int topbar_navmenu_icon=0x7f0700ff; + public static final int topbar_undertop_view=0x7f070100; + public static final int touch_outside=0x7f070096; + public static final int transition_current_scene=0x7f070005; + public static final int transition_layout_save=0x7f070006; + public static final int transition_position=0x7f070007; + public static final int transition_scene_layoutid_cache=0x7f070008; + public static final int transition_transform=0x7f070009; + public static final int uniform=0x7f070046; + public static final int up=0x7f070016; + public static final int useLogo=0x7f070044; + public static final int ver_clone=0x7f07010b; + public static final int ver_edit=0x7f07010c; + public static final int ver_remove=0x7f07010d; + public static final int view_offset_helper=0x7f07000c; + public static final int visible=0x7f070101; + public static final int withText=0x7f070054; + public static final int wrap_content=0x7f070047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0a0005; + public static final int abc_config_activityShortDur=0x7f0a0006; + public static final int app_bar_elevation_anim_duration=0x7f0a0001; + public static final int bottom_sheet_slide_duration=0x7f0a0002; + public static final int cancel_button_image_alpha=0x7f0a0007; + public static final int config_tooltipAnimTime=0x7f0a0008; + public static final int design_snackbar_text_max_lines=0x7f0a0000; + public static final int hide_password_duration=0x7f0a0003; + public static final int show_password_duration=0x7f0a0004; + public static final int status_bar_notification_info_maxnum=0x7f0a0009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int preference=0x7f030043; + public static final int preference_category=0x7f030044; + public static final int preference_category_material=0x7f030045; + public static final int preference_dialog_edittext=0x7f030046; + public static final int preference_dropdown=0x7f030047; + public static final int preference_dropdown_material=0x7f030048; + public static final int preference_information=0x7f030049; + public static final int preference_information_material=0x7f03004a; + public static final int preference_list_fragment=0x7f03004b; + public static final int preference_material=0x7f03004c; + public static final int preference_recyclerview=0x7f03004d; + public static final int preference_widget_checkbox=0x7f03004e; + public static final int preference_widget_seekbar=0x7f03004f; + public static final int preference_widget_seekbar_material=0x7f030050; + public static final int preference_widget_switch=0x7f030051; + public static final int preference_widget_switch_compat=0x7f030052; + public static final int select_dialog_item_material=0x7f030053; + public static final int select_dialog_multichoice_material=0x7f030054; + public static final int select_dialog_singlechoice_material=0x7f030055; + public static final int settings=0x7f030056; + public static final int start_screen=0x7f030057; + public static final int support_simple_spinner_dropdown_item=0x7f030058; + public static final int tooltip=0x7f030059; + public static final int top_bar=0x7f03005a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0f0000; + public static final int menu_runopt=0x7f0f0001; + public static final int menu_versionopt=0x7f0f0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0c0008; + public static final int abc_action_bar_home_description_format=0x7f0c0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0c000a; + public static final int abc_action_bar_up_description=0x7f0c000b; + public static final int abc_action_menu_overflow_description=0x7f0c000c; + public static final int abc_action_mode_done=0x7f0c000d; + public static final int abc_activity_chooser_view_see_all=0x7f0c000e; + public static final int abc_activitychooserview_choose_application=0x7f0c000f; + public static final int abc_capital_off=0x7f0c0010; + public static final int abc_capital_on=0x7f0c0011; + public static final int abc_font_family_body_1_material=0x7f0c001d; + public static final int abc_font_family_body_2_material=0x7f0c001e; + public static final int abc_font_family_button_material=0x7f0c001f; + public static final int abc_font_family_caption_material=0x7f0c0020; + public static final int abc_font_family_display_1_material=0x7f0c0021; + public static final int abc_font_family_display_2_material=0x7f0c0022; + public static final int abc_font_family_display_3_material=0x7f0c0023; + public static final int abc_font_family_display_4_material=0x7f0c0024; + public static final int abc_font_family_headline_material=0x7f0c0025; + public static final int abc_font_family_menu_material=0x7f0c0026; + public static final int abc_font_family_subhead_material=0x7f0c0027; + public static final int abc_font_family_title_material=0x7f0c0028; + public static final int abc_search_hint=0x7f0c0012; + public static final int abc_searchview_description_clear=0x7f0c0013; + public static final int abc_searchview_description_query=0x7f0c0014; + public static final int abc_searchview_description_search=0x7f0c0015; + public static final int abc_searchview_description_submit=0x7f0c0016; + public static final int abc_searchview_description_voice=0x7f0c0017; + public static final int abc_shareactionprovider_share_with=0x7f0c0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0c0019; + public static final int abc_toolbar_collapse_description=0x7f0c001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0c002d; + public static final int alerttitle_installmod=0x7f0c0047; + public static final int alerttitle_installoptifine=0x7f0c0048; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0c0046; + /** App name part + */ + public static final int app_name=0x7f0c002b; + public static final int app_short_name=0x7f0c002c; + public static final int appbar_scrolling_view_behavior=0x7f0c0000; + public static final int bottom_sheet_behavior=0x7f0c0001; + public static final int character_counter_pattern=0x7f0c0002; + public static final int control_adebug=0x7f0c0098; + public static final int control_chat=0x7f0c0086; + public static final int control_customkey=0x7f0c0099; + public static final int control_debug=0x7f0c0087; + public static final int control_down=0x7f0c0090; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0c0096; + public static final int control_inventory=0x7f0c008c; + public static final int control_jump=0x7f0c0091; + public static final int control_keyboard=0x7f0c0085; + public static final int control_left=0x7f0c008e; + public static final int control_listplayers=0x7f0c0093; + public static final int control_more3=0x7f0c009a; + public static final int control_more4=0x7f0c009b; + public static final int control_mouseoff=0x7f0c0094; + public static final int control_mouseon=0x7f0c0095; + public static final int control_primary=0x7f0c0089; + public static final int control_right=0x7f0c008f; + public static final int control_secondary=0x7f0c008a; + public static final int control_shift=0x7f0c008b; + public static final int control_thirdperson=0x7f0c0092; + public static final int control_toggle=0x7f0c0084; + public static final int control_up=0x7f0c008d; + public static final int control_viewout=0x7f0c0097; + public static final int control_zoom=0x7f0c0088; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0c0083; + public static final int customctrl_hidden=0x7f0c009d; + public static final int customctrl_keyname=0x7f0c009c; + /** Error messages + */ + public static final int error_checklog=0x7f0c0049; + public static final int error_convert_client=0x7f0c004e; + public static final int error_convert_lib=0x7f0c004d; + public static final int error_load_version=0x7f0c004c; + public static final int error_no_version=0x7f0c004b; + public static final int error_show_less=0x7f0c0050; + public static final int error_show_more=0x7f0c004f; + public static final int error_title=0x7f0c004a; + /** Global strings + */ + public static final int global_add=0x7f0c0077; + public static final int global_edit=0x7f0c0078; + public static final int global_error_field_empty=0x7f0c007d; + public static final int global_load=0x7f0c0079; + public static final int global_name=0x7f0c007a; + public static final int global_remove=0x7f0c007b; + public static final int global_save=0x7f0c007c; + public static final int hint_control_mapping=0x7f0c003e; + /** Hint + */ + public static final int hint_select_account=0x7f0c003d; + /** Languages list part + */ + public static final int language_name=0x7f0c002e; + /** Logging output + */ + public static final int log_title=0x7f0c002f; + public static final int login_error_exist_username=0x7f0c003b; + public static final int login_error_short_username=0x7f0c003a; + public static final int login_offline_alert_skip=0x7f0c0039; + public static final int login_offline_switch=0x7f0c0037; + public static final int login_offline_warning_1=0x7f0c0038; + public static final int login_online_create_account=0x7f0c0036; + public static final int login_online_login_label=0x7f0c0035; + public static final int login_online_password_hint=0x7f0c0032; + public static final int login_online_password_question=0x7f0c0033; + public static final int login_online_remember=0x7f0c0034; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0c0030; + public static final int login_online_username_question=0x7f0c0031; + public static final int login_select_account=0x7f0c003c; + public static final int mcl_launch_cleancache=0x7f0c0058; + public static final int mcl_launch_convert_client=0x7f0c005d; + public static final int mcl_launch_convert_lib=0x7f0c005c; + public static final int mcl_launch_download_assets=0x7f0c005f; + public static final int mcl_launch_download_client=0x7f0c005b; + public static final int mcl_launch_download_lib=0x7f0c005a; + public static final int mcl_launch_downloading=0x7f0c0059; + public static final int mcl_launch_patch_client=0x7f0c005e; + public static final int mcl_option_about=0x7f0c0066; + public static final int mcl_option_checkupdate=0x7f0c0063; + public static final int mcl_option_customcontrol=0x7f0c0064; + public static final int mcl_option_modmgr=0x7f0c0061; + public static final int mcl_option_optifineinstall=0x7f0c0062; + public static final int mcl_option_settings=0x7f0c0065; + public static final int mcl_options=0x7f0c0060; + public static final int mcl_setting_category_general=0x7f0c0070; + public static final int mcl_setting_category_veroption=0x7f0c0071; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0c006f; + public static final int mcl_setting_subtitle_freeform=0x7f0c006a; + public static final int mcl_setting_subtitle_longpresstrigger=0x7f0c006c; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0c0068; + public static final int mcl_setting_title_controlsize=0x7f0c006d; + public static final int mcl_setting_title_forgetoptifpath=0x7f0c006e; + public static final int mcl_setting_title_freeform=0x7f0c0069; + public static final int mcl_setting_title_longpresstrigger=0x7f0c006b; + public static final int mcl_setting_title_setmaxdxref=0x7f0c0067; + public static final int mcl_setting_veroption_oldalpha=0x7f0c0074; + public static final int mcl_setting_veroption_oldbeta=0x7f0c0075; + public static final int mcl_setting_veroption_release=0x7f0c0072; + public static final int mcl_setting_veroption_snapshot=0x7f0c0073; + public static final int mcl_tab_console=0x7f0c0055; + public static final int mcl_tab_crash=0x7f0c0056; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0c0054; + public static final int mcl_version_clone=0x7f0c0076; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0c0057; + public static final int mcn_exit_call=0x7f0c007f; + public static final int mcn_exit_confirm=0x7f0c0082; + public static final int mcn_exit_crash=0x7f0c0080; + public static final int mcn_exit_errcrash=0x7f0c0081; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0c007e; + public static final int password_toggle_content_description=0x7f0c0003; + public static final int path_password_eye=0x7f0c0004; + public static final int path_password_eye_mask_strike_through=0x7f0c0005; + public static final int path_password_eye_mask_visible=0x7f0c0006; + public static final int path_password_strike_through=0x7f0c0007; + public static final int search_menu_title=0x7f0c001b; + public static final int status_bar_notification_info_overflow=0x7f0c001c; + public static final int toast_login_error=0x7f0c0052; + public static final int toast_optifine_success=0x7f0c0053; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0c0051; + /** Update part (unused now) + */ + public static final int update_console=0x7f0c009e; + public static final int v7_preference_off=0x7f0c0029; + public static final int v7_preference_on=0x7f0c002a; + public static final int warning_action_exit=0x7f0c0044; + public static final int warning_action_install=0x7f0c0042; + public static final int warning_action_tryanyway=0x7f0c0043; + public static final int warning_msg=0x7f0c0040; + public static final int warning_noshowagain=0x7f0c0041; + public static final int warning_remove_account=0x7f0c0045; + /** Warning + */ + public static final int warning_title=0x7f0c003f; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800cd; + public static final int AlertDialog_AppCompat_Light=0x7f0800ce; + public static final int AlertTheme=0x7f0801ab; + public static final int Animation_AppCompat_Dialog=0x7f0800cf; + public static final int Animation_AppCompat_DropDownUp=0x7f0800d0; + public static final int Animation_AppCompat_Tooltip=0x7f0800d1; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f0801a9; + public static final int Base_AlertDialog_AppCompat=0x7f0800d2; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800d3; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800d4; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800d5; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800d6; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800d7; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800d8; + public static final int Base_TextAppearance_AppCompat=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080075; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080076; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800d9; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080077; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080079; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f08007a; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Title=0x7f08007b; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800da; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800be; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08007c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08007d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08007e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08007f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080080; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080081; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080082; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800c5; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800bf; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800db; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080083; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080084; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080085; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080086; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080087; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800dc; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080089; + public static final int Base_Theme_AppCompat=0x7f08008a; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800dd; + public static final int Base_Theme_AppCompat_Dialog=0x7f080041; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080042; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800de; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080043; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080031; + public static final int Base_Theme_AppCompat_Light=0x7f08008b; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800df; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080044; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080045; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800e0; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080046; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080032; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800e1; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800e2; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800e3; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800e4; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080047; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080048; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800e5; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080049; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08004a; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f08004b; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080053; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080054; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08008c; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08008d; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08008e; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08008f; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f080090; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800bc; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800bd; + public static final int Base_V23_Theme_AppCompat=0x7f0800c0; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800c1; + public static final int Base_V26_Theme_AppCompat=0x7f0800c9; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800ca; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800cb; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800e6; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800e7; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800e8; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800e9; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800ea; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800eb; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ec; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800ed; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080091; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080092; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080093; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080094; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080095; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800f1; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800f2; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080055; + public static final int Base_Widget_AppCompat_Button=0x7f080096; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080097; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080098; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800f3; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800c2; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080099; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08009a; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800f4; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08009b; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08009c; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800f5; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080030; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800f6; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08009d; + public static final int Base_Widget_AppCompat_EditText=0x7f080056; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08009e; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800f7; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800f8; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800f9; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08009f; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0800a0; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0800a1; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0800a2; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0800a3; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800fa; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0800a4; + public static final int Base_Widget_AppCompat_ListView=0x7f0800a5; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0800a6; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0800a7; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0800a8; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0800a9; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800fb; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08004c; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08004d; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800c3; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800c4; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800fc; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800fd; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0800ab; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800fe; + public static final int Base_Widget_AppCompat_Spinner=0x7f0800ac; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080033; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0800ad; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800cc; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0800ae; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f0801ac; + public static final int MenuDialogAnimation=0x7f0801ad; + public static final int Platform_AppCompat=0x7f08004e; + public static final int Platform_AppCompat_Light=0x7f08004f; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0800af; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0800b0; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0800b1; + public static final int Platform_V11_AppCompat=0x7f080050; + public static final int Platform_V11_AppCompat_Light=0x7f080051; + public static final int Platform_V14_AppCompat=0x7f080058; + public static final int Platform_V14_AppCompat_Light=0x7f080059; + public static final int Platform_V21_AppCompat=0x7f0800b2; + public static final int Platform_V21_AppCompat_Light=0x7f0800b3; + public static final int Platform_V25_AppCompat=0x7f0800c7; + public static final int Platform_V25_AppCompat_Light=0x7f0800c8; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080052; + public static final int Preference=0x7f080192; + public static final int Preference_Category=0x7f080193; + public static final int Preference_Category_Material=0x7f08001f; + public static final int Preference_CheckBoxPreference=0x7f080194; + public static final int Preference_CheckBoxPreference_Material=0x7f080020; + public static final int Preference_DialogPreference=0x7f080195; + public static final int Preference_DialogPreference_EditTextPreference=0x7f080196; + public static final int Preference_DialogPreference_EditTextPreference_Material=0x7f080021; + public static final int Preference_DialogPreference_Material=0x7f080022; + public static final int Preference_DropDown=0x7f080197; + public static final int Preference_DropDown_Material=0x7f080023; + public static final int Preference_Information=0x7f080198; + public static final int Preference_Information_Material=0x7f080024; + public static final int Preference_Material=0x7f080025; + public static final int Preference_PreferenceScreen=0x7f080199; + public static final int Preference_PreferenceScreen_Material=0x7f080026; + public static final int Preference_SeekBarPreference=0x7f08019a; + public static final int Preference_SeekBarPreference_Material=0x7f080027; + public static final int Preference_SwitchPreference=0x7f080028; + public static final int Preference_SwitchPreference_Material=0x7f080029; + public static final int Preference_SwitchPreferenceCompat=0x7f08019b; + public static final int Preference_SwitchPreferenceCompat_Material=0x7f08002a; + public static final int PreferenceFragment=0x7f080190; + public static final int PreferenceFragment_Material=0x7f08002b; + public static final int PreferenceFragmentList=0x7f080191; + public static final int PreferenceFragmentList_Material=0x7f08001e; + public static final int PreferenceThemeOverlay=0x7f08019c; + public static final int PreferenceThemeOverlay_v14=0x7f08002c; + public static final int PreferenceThemeOverlay_v14_Material=0x7f08002d; + public static final int Preference_TextAppearanceMaterialBody2=0x7f08002e; + public static final int Preference_TextAppearanceMaterialSubhead=0x7f08002f; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08005b; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08005c; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08005d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08005e; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08005f; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080060; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080061; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080062; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080063; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080064; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080065; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080066; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080067; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080068; + public static final int RunTheme=0x7f0801aa; + public static final int TextAppearance_AppCompat=0x7f0800ff; + public static final int TextAppearance_AppCompat_Body1=0x7f080100; + public static final int TextAppearance_AppCompat_Body2=0x7f080101; + public static final int TextAppearance_AppCompat_Button=0x7f080102; + public static final int TextAppearance_AppCompat_Caption=0x7f080103; + public static final int TextAppearance_AppCompat_Display1=0x7f080104; + public static final int TextAppearance_AppCompat_Display2=0x7f080105; + public static final int TextAppearance_AppCompat_Display3=0x7f080106; + public static final int TextAppearance_AppCompat_Display4=0x7f080107; + public static final int TextAppearance_AppCompat_Headline=0x7f080108; + public static final int TextAppearance_AppCompat_Inverse=0x7f080109; + public static final int TextAppearance_AppCompat_Large=0x7f08010a; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f08010b; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f08010d; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08010e; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08010f; + public static final int TextAppearance_AppCompat_Medium=0x7f080110; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Menu=0x7f080112; + public static final int TextAppearance_AppCompat_Notification=0x7f0800b4; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800b5; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800b6; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080113; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080114; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800b7; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800b8; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800b9; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800bb; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080115; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080116; + public static final int TextAppearance_AppCompat_Small=0x7f080117; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080118; + public static final int TextAppearance_AppCompat_Subhead=0x7f080119; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f08011a; + public static final int TextAppearance_AppCompat_Title=0x7f08011b; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08011c; + public static final int TextAppearance_AppCompat_Tooltip=0x7f08005a; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08011d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08011e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08011f; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080120; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080121; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080122; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080123; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080124; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080125; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080126; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080127; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080128; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080129; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f08012a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f08012b; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08012c; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08012d; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08012e; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08012f; + public static final int TextAppearance_Compat_Notification=0x7f0801a2; + public static final int TextAppearance_Compat_Notification_Info=0x7f0801a3; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08019d; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0801a8; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0801a1; + public static final int TextAppearance_Compat_Notification_Media=0x7f08019e; + public static final int TextAppearance_Compat_Notification_Time=0x7f0801a4; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f08019f; + public static final int TextAppearance_Compat_Notification_Title=0x7f0801a5; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0801a0; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080130; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080131; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080132; + public static final int Theme_AppCompat=0x7f080133; + public static final int Theme_AppCompat_CompactMenu=0x7f080134; + public static final int Theme_AppCompat_DayNight=0x7f080034; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080035; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080036; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080037; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080038; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080039; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08003a; + public static final int Theme_AppCompat_Dialog=0x7f080135; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080136; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080137; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080138; + public static final int Theme_AppCompat_Light=0x7f080139; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f08013a; + public static final int Theme_AppCompat_Light_Dialog=0x7f08013b; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08013c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08013d; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08013e; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08013f; + public static final int Theme_AppCompat_NoActionBar=0x7f080140; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f080141; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080142; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080143; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080144; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080145; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080146; + public static final int ThemeOverlay_AppCompat_Light=0x7f080147; + public static final int Widget_AppCompat_ActionBar=0x7f080148; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080149; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08014a; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f08014b; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08014c; + public static final int Widget_AppCompat_ActionButton=0x7f08014d; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08014e; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08014f; + public static final int Widget_AppCompat_ActionMode=0x7f080150; + public static final int Widget_AppCompat_ActivityChooserView=0x7f080151; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080152; + public static final int Widget_AppCompat_Button=0x7f080153; + public static final int Widget_AppCompat_Button_Borderless=0x7f080154; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080155; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080156; + public static final int Widget_AppCompat_Button_Colored=0x7f080157; + public static final int Widget_AppCompat_Button_Small=0x7f080158; + public static final int Widget_AppCompat_ButtonBar=0x7f080159; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08015a; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08015b; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08015c; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08015d; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08015e; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_EditText=0x7f080160; + public static final int Widget_AppCompat_ImageButton=0x7f080161; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080162; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080163; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080164; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080165; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080166; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080167; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080168; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080169; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08016a; + public static final int Widget_AppCompat_Light_ActionButton=0x7f08016b; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08016c; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08016d; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08016e; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08016f; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080170; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080171; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080172; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080173; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080174; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080175; + public static final int Widget_AppCompat_Light_SearchView=0x7f080176; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080177; + public static final int Widget_AppCompat_ListMenuView=0x7f080178; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080179; + public static final int Widget_AppCompat_ListView=0x7f08017a; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08017b; + public static final int Widget_AppCompat_ListView_Menu=0x7f08017c; + public static final int Widget_AppCompat_PopupMenu=0x7f08017d; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08017e; + public static final int Widget_AppCompat_PopupWindow=0x7f08017f; + public static final int Widget_AppCompat_ProgressBar=0x7f080180; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080181; + public static final int Widget_AppCompat_RatingBar=0x7f080182; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080183; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080184; + public static final int Widget_AppCompat_SearchView=0x7f080185; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080186; + public static final int Widget_AppCompat_SeekBar=0x7f080187; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080188; + public static final int Widget_AppCompat_Spinner=0x7f080189; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08018a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08018b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08018c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08018d; + public static final int Widget_AppCompat_Toolbar=0x7f08018e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08018f; + public static final int Widget_Compat_NotificationActionContainer=0x7f0801a6; + public static final int Widget_Compat_NotificationActionText=0x7f0801a7; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class xml { + public static final int pref_main=0x7f060000; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010000, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f010003, 0x7f010004 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BackgroundStyle. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BackgroundStyle_android_selectableItemBackground android:selectableItemBackground}
{@link #BackgroundStyle_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
+ @see #BackgroundStyle_android_selectableItemBackground + @see #BackgroundStyle_selectableItemBackground + */ + public static final int[] BackgroundStyle = { + 0x0101030e, 0x7f0100c2 + }; + /** +

This symbol is the offset where the {@link android.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #BackgroundStyle} array. + @attr name android:selectableItemBackground + */ + public static final int BackgroundStyle_android_selectableItemBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #BackgroundStyle} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int BackgroundStyle_selectableItemBackground = 1; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f010005, 0x7f010006, 0x7f010007 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CheckBoxPreference. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #CheckBoxPreference_android_disableDependentsState android:disableDependentsState}
{@link #CheckBoxPreference_android_summaryOff android:summaryOff}
{@link #CheckBoxPreference_android_summaryOn android:summaryOn}
{@link #CheckBoxPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #CheckBoxPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #CheckBoxPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
+ @see #CheckBoxPreference_android_disableDependentsState + @see #CheckBoxPreference_android_summaryOff + @see #CheckBoxPreference_android_summaryOn + @see #CheckBoxPreference_disableDependentsState + @see #CheckBoxPreference_summaryOff + @see #CheckBoxPreference_summaryOn + */ + public static final int[] CheckBoxPreference = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x7f010151, + 0x7f010152, 0x7f010153 + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:disableDependentsState + */ + public static final int CheckBoxPreference_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:summaryOff + */ + public static final int CheckBoxPreference_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:summaryOn + */ + public static final int CheckBoxPreference_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int CheckBoxPreference_disableDependentsState = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int CheckBoxPreference_summaryOff = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int CheckBoxPreference_summaryOn = 3; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, + 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, + 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, + 0x7f010014, 0x7f010015, 0x7f010016, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010017, 0x7f010018 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010019, 0x7f01001a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f01001b, 0x7f01001c, 0x7f01001d, + 0x7f01001e, 0x7f01001f, 0x7f010020 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f010021, 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DialogPreference. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #DialogPreference_android_dialogIcon android:dialogIcon}
{@link #DialogPreference_android_dialogLayout android:dialogLayout}
{@link #DialogPreference_android_dialogMessage android:dialogMessage}
{@link #DialogPreference_android_dialogTitle android:dialogTitle}
{@link #DialogPreference_android_negativeButtonText android:negativeButtonText}
{@link #DialogPreference_android_positiveButtonText android:positiveButtonText}
{@link #DialogPreference_dialogIcon net.kdt.pojavlaunch:dialogIcon}
{@link #DialogPreference_dialogLayout net.kdt.pojavlaunch:dialogLayout}
{@link #DialogPreference_dialogMessage net.kdt.pojavlaunch:dialogMessage}
{@link #DialogPreference_dialogTitle net.kdt.pojavlaunch:dialogTitle}
{@link #DialogPreference_negativeButtonText net.kdt.pojavlaunch:negativeButtonText}
{@link #DialogPreference_positiveButtonText net.kdt.pojavlaunch:positiveButtonText}
+ @see #DialogPreference_android_dialogIcon + @see #DialogPreference_android_dialogLayout + @see #DialogPreference_android_dialogMessage + @see #DialogPreference_android_dialogTitle + @see #DialogPreference_android_negativeButtonText + @see #DialogPreference_android_positiveButtonText + @see #DialogPreference_dialogIcon + @see #DialogPreference_dialogLayout + @see #DialogPreference_dialogMessage + @see #DialogPreference_dialogTitle + @see #DialogPreference_negativeButtonText + @see #DialogPreference_positiveButtonText + */ + public static final int[] DialogPreference = { + 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, + 0x010101f6, 0x010101f7, 0x7f010154, 0x7f010155, + 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dialogIcon} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogIcon + */ + public static final int DialogPreference_android_dialogIcon = 2; + /** +

This symbol is the offset where the {@link android.R.attr#dialogLayout} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogLayout + */ + public static final int DialogPreference_android_dialogLayout = 5; + /** +

This symbol is the offset where the {@link android.R.attr#dialogMessage} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogMessage + */ + public static final int DialogPreference_android_dialogMessage = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dialogTitle} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogTitle + */ + public static final int DialogPreference_android_dialogTitle = 0; + /** +

This symbol is the offset where the {@link android.R.attr#negativeButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:negativeButtonText + */ + public static final int DialogPreference_android_negativeButtonText = 4; + /** +

This symbol is the offset where the {@link android.R.attr#positiveButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:positiveButtonText + */ + public static final int DialogPreference_android_positiveButtonText = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogIcon} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogIcon + */ + public static final int DialogPreference_dialogIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogLayout} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogLayout + */ + public static final int DialogPreference_dialogLayout = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogMessage} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogMessage + */ + public static final int DialogPreference_dialogMessage = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTitle} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogTitle + */ + public static final int DialogPreference_dialogTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#negativeButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:negativeButtonText + */ + public static final int DialogPreference_negativeButtonText = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#positiveButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:positiveButtonText + */ + public static final int DialogPreference_positiveButtonText = 9; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010029 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f01018c, 0x7f01018d, 0x7f01018e, 0x7f01018f, + 0x7f010190, 0x7f010191 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010192, 0x7f010193, 0x7f010194 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a ListPreference. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #ListPreference_android_entries android:entries}
{@link #ListPreference_android_entryValues android:entryValues}
{@link #ListPreference_entries net.kdt.pojavlaunch:entries}
{@link #ListPreference_entryValues net.kdt.pojavlaunch:entryValues}
+ @see #ListPreference_android_entries + @see #ListPreference_android_entryValues + @see #ListPreference_entries + @see #ListPreference_entryValues + */ + public static final int[] ListPreference = { + 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b + }; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #ListPreference} array. + @attr name android:entries + */ + public static final int ListPreference_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#entryValues} + attribute's value can be found in the {@link #ListPreference} array. + @attr name android:entryValues + */ + public static final int ListPreference_android_entryValues = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} + attribute's value can be found in the {@link #ListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entries + */ + public static final int ListPreference_entries = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} + attribute's value can be found in the {@link #ListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entryValues + */ + public static final int ListPreference_entryValues = 3; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a MultiSelectListPreference. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #MultiSelectListPreference_android_entries android:entries}
{@link #MultiSelectListPreference_android_entryValues android:entryValues}
{@link #MultiSelectListPreference_entries net.kdt.pojavlaunch:entries}
{@link #MultiSelectListPreference_entryValues net.kdt.pojavlaunch:entryValues}
+ @see #MultiSelectListPreference_android_entries + @see #MultiSelectListPreference_android_entryValues + @see #MultiSelectListPreference_entries + @see #MultiSelectListPreference_entryValues + */ + public static final int[] MultiSelectListPreference = { + 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b + }; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + @attr name android:entries + */ + public static final int MultiSelectListPreference_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#entryValues} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + @attr name android:entryValues + */ + public static final int MultiSelectListPreference_android_entryValues = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entries + */ + public static final int MultiSelectListPreference_entries = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entryValues + */ + public static final int MultiSelectListPreference_entryValues = 3; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01002b, + 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, + 0x7f010030, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a Preference. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Preference_allowDividerAbove net.kdt.pojavlaunch:allowDividerAbove}
{@link #Preference_allowDividerBelow net.kdt.pojavlaunch:allowDividerBelow}
{@link #Preference_android_defaultValue android:defaultValue}
{@link #Preference_android_dependency android:dependency}
{@link #Preference_android_enabled android:enabled}
{@link #Preference_android_fragment android:fragment}
{@link #Preference_android_icon android:icon}
{@link #Preference_android_iconSpaceReserved android:iconSpaceReserved}
{@link #Preference_android_key android:key}
{@link #Preference_android_layout android:layout}
{@link #Preference_android_order android:order}
{@link #Preference_android_persistent android:persistent}
{@link #Preference_android_selectable android:selectable}
{@link #Preference_android_shouldDisableView android:shouldDisableView}
{@link #Preference_android_singleLineTitle android:singleLineTitle}
{@link #Preference_android_summary android:summary}
{@link #Preference_android_title android:title}
{@link #Preference_android_widgetLayout android:widgetLayout}
{@link #Preference_defaultValue net.kdt.pojavlaunch:defaultValue}
{@link #Preference_dependency net.kdt.pojavlaunch:dependency}
{@link #Preference_enabled net.kdt.pojavlaunch:enabled}
{@link #Preference_fragment net.kdt.pojavlaunch:fragment}
{@link #Preference_icon net.kdt.pojavlaunch:icon}
{@link #Preference_iconSpaceReserved net.kdt.pojavlaunch:iconSpaceReserved}
{@link #Preference_key net.kdt.pojavlaunch:key}
{@link #Preference_layout net.kdt.pojavlaunch:layout}
{@link #Preference_order net.kdt.pojavlaunch:order}
{@link #Preference_persistent net.kdt.pojavlaunch:persistent}
{@link #Preference_selectable net.kdt.pojavlaunch:selectable}
{@link #Preference_shouldDisableView net.kdt.pojavlaunch:shouldDisableView}
{@link #Preference_singleLineTitle net.kdt.pojavlaunch:singleLineTitle}
{@link #Preference_summary net.kdt.pojavlaunch:summary}
{@link #Preference_title net.kdt.pojavlaunch:title}
{@link #Preference_widgetLayout net.kdt.pojavlaunch:widgetLayout}
+ @see #Preference_allowDividerAbove + @see #Preference_allowDividerBelow + @see #Preference_android_defaultValue + @see #Preference_android_dependency + @see #Preference_android_enabled + @see #Preference_android_fragment + @see #Preference_android_icon + @see #Preference_android_iconSpaceReserved + @see #Preference_android_key + @see #Preference_android_layout + @see #Preference_android_order + @see #Preference_android_persistent + @see #Preference_android_selectable + @see #Preference_android_shouldDisableView + @see #Preference_android_singleLineTitle + @see #Preference_android_summary + @see #Preference_android_title + @see #Preference_android_widgetLayout + @see #Preference_defaultValue + @see #Preference_dependency + @see #Preference_enabled + @see #Preference_fragment + @see #Preference_icon + @see #Preference_iconSpaceReserved + @see #Preference_key + @see #Preference_layout + @see #Preference_order + @see #Preference_persistent + @see #Preference_selectable + @see #Preference_shouldDisableView + @see #Preference_singleLineTitle + @see #Preference_summary + @see #Preference_title + @see #Preference_widgetLayout + */ + public static final int[] Preference = { + 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, + 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, + 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, + 0x010101ee, 0x010102e3, 0x0101055c, 0x01010561, + 0x7f01005e, 0x7f010064, 0x7f010123, 0x7f01015c, + 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, + 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, + 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, + 0x7f010169, 0x7f01016a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAbove} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAbove + */ + public static final int Preference_allowDividerAbove = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerBelow} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerBelow + */ + public static final int Preference_allowDividerBelow = 31; + /** +

This symbol is the offset where the {@link android.R.attr#defaultValue} + attribute's value can be found in the {@link #Preference} array. + @attr name android:defaultValue + */ + public static final int Preference_android_defaultValue = 11; + /** +

This symbol is the offset where the {@link android.R.attr#dependency} + attribute's value can be found in the {@link #Preference} array. + @attr name android:dependency + */ + public static final int Preference_android_dependency = 10; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #Preference} array. + @attr name android:enabled + */ + public static final int Preference_android_enabled = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fragment} + attribute's value can be found in the {@link #Preference} array. + @attr name android:fragment + */ + public static final int Preference_android_fragment = 13; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #Preference} array. + @attr name android:icon + */ + public static final int Preference_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#iconSpaceReserved} + attribute's value can be found in the {@link #Preference} array. + @attr name android:iconSpaceReserved + */ + public static final int Preference_android_iconSpaceReserved = 15; + /** +

This symbol is the offset where the {@link android.R.attr#key} + attribute's value can be found in the {@link #Preference} array. + @attr name android:key + */ + public static final int Preference_android_key = 6; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #Preference} array. + @attr name android:layout + */ + public static final int Preference_android_layout = 3; + /** +

This symbol is the offset where the {@link android.R.attr#order} + attribute's value can be found in the {@link #Preference} array. + @attr name android:order + */ + public static final int Preference_android_order = 8; + /** +

This symbol is the offset where the {@link android.R.attr#persistent} + attribute's value can be found in the {@link #Preference} array. + @attr name android:persistent + */ + public static final int Preference_android_persistent = 1; + /** +

This symbol is the offset where the {@link android.R.attr#selectable} + attribute's value can be found in the {@link #Preference} array. + @attr name android:selectable + */ + public static final int Preference_android_selectable = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shouldDisableView} + attribute's value can be found in the {@link #Preference} array. + @attr name android:shouldDisableView + */ + public static final int Preference_android_shouldDisableView = 12; + /** +

This symbol is the offset where the {@link android.R.attr#singleLineTitle} + attribute's value can be found in the {@link #Preference} array. + @attr name android:singleLineTitle + */ + public static final int Preference_android_singleLineTitle = 14; + /** +

This symbol is the offset where the {@link android.R.attr#summary} + attribute's value can be found in the {@link #Preference} array. + @attr name android:summary + */ + public static final int Preference_android_summary = 7; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #Preference} array. + @attr name android:title + */ + public static final int Preference_android_title = 4; + /** +

This symbol is the offset where the {@link android.R.attr#widgetLayout} + attribute's value can be found in the {@link #Preference} array. + @attr name android:widgetLayout + */ + public static final int Preference_android_widgetLayout = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultValue} + attribute's value can be found in the {@link #Preference} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". + @attr name net.kdt.pojavlaunch:defaultValue + */ + public static final int Preference_defaultValue = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dependency} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dependency + */ + public static final int Preference_dependency = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#enabled} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:enabled + */ + public static final int Preference_enabled = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fragment} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fragment + */ + public static final int Preference_fragment = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int Preference_icon = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconSpaceReserved} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconSpaceReserved + */ + public static final int Preference_iconSpaceReserved = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#key} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:key + */ + public static final int Preference_key = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int Preference_layout = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#order} + attribute's value can be found in the {@link #Preference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:order + */ + public static final int Preference_order = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#persistent} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:persistent + */ + public static final int Preference_persistent = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectable} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:selectable + */ + public static final int Preference_selectable = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#shouldDisableView} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:shouldDisableView + */ + public static final int Preference_shouldDisableView = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleLineTitle} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:singleLineTitle + */ + public static final int Preference_singleLineTitle = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summary} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summary + */ + public static final int Preference_summary = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Preference_title = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#widgetLayout} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:widgetLayout + */ + public static final int Preference_widgetLayout = 23; + /** Attributes that can be used with a PreferenceFragment. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceFragment_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragment_android_divider android:divider}
{@link #PreferenceFragment_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragment_android_layout android:layout}
+ @see #PreferenceFragment_allowDividerAfterLastItem + @see #PreferenceFragment_android_divider + @see #PreferenceFragment_android_dividerHeight + @see #PreferenceFragment_android_layout + */ + public static final int[] PreferenceFragment = { + 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} + attribute's value can be found in the {@link #PreferenceFragment} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem + */ + public static final int PreferenceFragment_allowDividerAfterLastItem = 3; + /** +

This symbol is the offset where the {@link android.R.attr#divider} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:divider + */ + public static final int PreferenceFragment_android_divider = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dividerHeight} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:dividerHeight + */ + public static final int PreferenceFragment_android_dividerHeight = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:layout + */ + public static final int PreferenceFragment_android_layout = 0; + /** Attributes that can be used with a PreferenceFragmentCompat. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceFragmentCompat_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragmentCompat_android_divider android:divider}
{@link #PreferenceFragmentCompat_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragmentCompat_android_layout android:layout}
+ @see #PreferenceFragmentCompat_allowDividerAfterLastItem + @see #PreferenceFragmentCompat_android_divider + @see #PreferenceFragmentCompat_android_dividerHeight + @see #PreferenceFragmentCompat_android_layout + */ + public static final int[] PreferenceFragmentCompat = { + 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem + */ + public static final int PreferenceFragmentCompat_allowDividerAfterLastItem = 3; + /** +

This symbol is the offset where the {@link android.R.attr#divider} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:divider + */ + public static final int PreferenceFragmentCompat_android_divider = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dividerHeight} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:dividerHeight + */ + public static final int PreferenceFragmentCompat_android_dividerHeight = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:layout + */ + public static final int PreferenceFragmentCompat_android_layout = 0; + /** Attributes that can be used with a PreferenceGroup. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PreferenceGroup_android_orderingFromXml android:orderingFromXml}
{@link #PreferenceGroup_orderingFromXml net.kdt.pojavlaunch:orderingFromXml}
+ @see #PreferenceGroup_android_orderingFromXml + @see #PreferenceGroup_orderingFromXml + */ + public static final int[] PreferenceGroup = { + 0x010101e7, 0x7f01016c + }; + /** +

This symbol is the offset where the {@link android.R.attr#orderingFromXml} + attribute's value can be found in the {@link #PreferenceGroup} array. + @attr name android:orderingFromXml + */ + public static final int PreferenceGroup_android_orderingFromXml = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#orderingFromXml} + attribute's value can be found in the {@link #PreferenceGroup} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:orderingFromXml + */ + public static final int PreferenceGroup_orderingFromXml = 1; + /** Attributes that can be used with a PreferenceImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceImageView_android_maxHeight android:maxHeight}
{@link #PreferenceImageView_android_maxWidth android:maxWidth}
{@link #PreferenceImageView_maxHeight net.kdt.pojavlaunch:maxHeight}
{@link #PreferenceImageView_maxWidth net.kdt.pojavlaunch:maxWidth}
+ @see #PreferenceImageView_android_maxHeight + @see #PreferenceImageView_android_maxWidth + @see #PreferenceImageView_maxHeight + @see #PreferenceImageView_maxWidth + */ + public static final int[] PreferenceImageView = { + 0x0101011f, 0x01010120, 0x7f01016d, 0x7f01016e + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxHeight} + attribute's value can be found in the {@link #PreferenceImageView} array. + @attr name android:maxHeight + */ + public static final int PreferenceImageView_android_maxHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #PreferenceImageView} array. + @attr name android:maxWidth + */ + public static final int PreferenceImageView_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxHeight} + attribute's value can be found in the {@link #PreferenceImageView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxHeight + */ + public static final int PreferenceImageView_maxHeight = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxWidth} + attribute's value can be found in the {@link #PreferenceImageView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxWidth + */ + public static final int PreferenceImageView_maxWidth = 2; + /** Attributes that can be used with a PreferenceTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #PreferenceTheme_checkBoxPreferenceStyle net.kdt.pojavlaunch:checkBoxPreferenceStyle}
{@link #PreferenceTheme_dialogPreferenceStyle net.kdt.pojavlaunch:dialogPreferenceStyle}
{@link #PreferenceTheme_dropdownPreferenceStyle net.kdt.pojavlaunch:dropdownPreferenceStyle}
{@link #PreferenceTheme_editTextPreferenceStyle net.kdt.pojavlaunch:editTextPreferenceStyle}
{@link #PreferenceTheme_preferenceActivityStyle net.kdt.pojavlaunch:preferenceActivityStyle}
{@link #PreferenceTheme_preferenceCategoryStyle net.kdt.pojavlaunch:preferenceCategoryStyle}
{@link #PreferenceTheme_preferenceFragmentCompatStyle net.kdt.pojavlaunch:preferenceFragmentCompatStyle}
{@link #PreferenceTheme_preferenceFragmentListStyle net.kdt.pojavlaunch:preferenceFragmentListStyle}
{@link #PreferenceTheme_preferenceFragmentPaddingSide net.kdt.pojavlaunch:preferenceFragmentPaddingSide}
{@link #PreferenceTheme_preferenceFragmentStyle net.kdt.pojavlaunch:preferenceFragmentStyle}
{@link #PreferenceTheme_preferenceHeaderPanelStyle net.kdt.pojavlaunch:preferenceHeaderPanelStyle}
{@link #PreferenceTheme_preferenceInformationStyle net.kdt.pojavlaunch:preferenceInformationStyle}
{@link #PreferenceTheme_preferenceLayoutChild net.kdt.pojavlaunch:preferenceLayoutChild}
{@link #PreferenceTheme_preferenceListStyle net.kdt.pojavlaunch:preferenceListStyle}
{@link #PreferenceTheme_preferencePanelStyle net.kdt.pojavlaunch:preferencePanelStyle}
{@link #PreferenceTheme_preferenceScreenStyle net.kdt.pojavlaunch:preferenceScreenStyle}
{@link #PreferenceTheme_preferenceStyle net.kdt.pojavlaunch:preferenceStyle}
{@link #PreferenceTheme_preferenceTheme net.kdt.pojavlaunch:preferenceTheme}
{@link #PreferenceTheme_ringtonePreferenceStyle net.kdt.pojavlaunch:ringtonePreferenceStyle}
{@link #PreferenceTheme_seekBarPreferenceStyle net.kdt.pojavlaunch:seekBarPreferenceStyle}
{@link #PreferenceTheme_switchPreferenceCompatStyle net.kdt.pojavlaunch:switchPreferenceCompatStyle}
{@link #PreferenceTheme_switchPreferenceStyle net.kdt.pojavlaunch:switchPreferenceStyle}
{@link #PreferenceTheme_yesNoPreferenceStyle net.kdt.pojavlaunch:yesNoPreferenceStyle}
+ @see #PreferenceTheme_checkBoxPreferenceStyle + @see #PreferenceTheme_dialogPreferenceStyle + @see #PreferenceTheme_dropdownPreferenceStyle + @see #PreferenceTheme_editTextPreferenceStyle + @see #PreferenceTheme_preferenceActivityStyle + @see #PreferenceTheme_preferenceCategoryStyle + @see #PreferenceTheme_preferenceFragmentCompatStyle + @see #PreferenceTheme_preferenceFragmentListStyle + @see #PreferenceTheme_preferenceFragmentPaddingSide + @see #PreferenceTheme_preferenceFragmentStyle + @see #PreferenceTheme_preferenceHeaderPanelStyle + @see #PreferenceTheme_preferenceInformationStyle + @see #PreferenceTheme_preferenceLayoutChild + @see #PreferenceTheme_preferenceListStyle + @see #PreferenceTheme_preferencePanelStyle + @see #PreferenceTheme_preferenceScreenStyle + @see #PreferenceTheme_preferenceStyle + @see #PreferenceTheme_preferenceTheme + @see #PreferenceTheme_ringtonePreferenceStyle + @see #PreferenceTheme_seekBarPreferenceStyle + @see #PreferenceTheme_switchPreferenceCompatStyle + @see #PreferenceTheme_switchPreferenceStyle + @see #PreferenceTheme_yesNoPreferenceStyle + */ + public static final int[] PreferenceTheme = { + 0x7f01016f, 0x7f010170, 0x7f010171, 0x7f010172, + 0x7f010173, 0x7f010174, 0x7f010175, 0x7f010176, + 0x7f010177, 0x7f010178, 0x7f010179, 0x7f01017a, + 0x7f01017b, 0x7f01017c, 0x7f01017d, 0x7f01017e, + 0x7f01017f, 0x7f010180, 0x7f010181, 0x7f010182, + 0x7f010183, 0x7f010184, 0x7f010185 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkBoxPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkBoxPreferenceStyle + */ + public static final int PreferenceTheme_checkBoxPreferenceStyle = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogPreferenceStyle + */ + public static final int PreferenceTheme_dialogPreferenceStyle = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropdownPreferenceStyle + */ + public static final int PreferenceTheme_dropdownPreferenceStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextPreferenceStyle + */ + public static final int PreferenceTheme_editTextPreferenceStyle = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceActivityStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceActivityStyle + */ + public static final int PreferenceTheme_preferenceActivityStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceCategoryStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceCategoryStyle + */ + public static final int PreferenceTheme_preferenceCategoryStyle = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentCompatStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentCompatStyle + */ + public static final int PreferenceTheme_preferenceFragmentCompatStyle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentListStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentListStyle + */ + public static final int PreferenceTheme_preferenceFragmentListStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentPaddingSide} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preferenceFragmentPaddingSide + */ + public static final int PreferenceTheme_preferenceFragmentPaddingSide = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentStyle + */ + public static final int PreferenceTheme_preferenceFragmentStyle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceHeaderPanelStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceHeaderPanelStyle + */ + public static final int PreferenceTheme_preferenceHeaderPanelStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceInformationStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceInformationStyle + */ + public static final int PreferenceTheme_preferenceInformationStyle = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceLayoutChild} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceLayoutChild + */ + public static final int PreferenceTheme_preferenceLayoutChild = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceListStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceListStyle + */ + public static final int PreferenceTheme_preferenceListStyle = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferencePanelStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferencePanelStyle + */ + public static final int PreferenceTheme_preferencePanelStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceScreenStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceScreenStyle + */ + public static final int PreferenceTheme_preferenceScreenStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceStyle + */ + public static final int PreferenceTheme_preferenceStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceTheme} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceTheme + */ + public static final int PreferenceTheme_preferenceTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ringtonePreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ringtonePreferenceStyle + */ + public static final int PreferenceTheme_ringtonePreferenceStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarPreferenceStyle + */ + public static final int PreferenceTheme_seekBarPreferenceStyle = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceCompatStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchPreferenceCompatStyle + */ + public static final int PreferenceTheme_switchPreferenceCompatStyle = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchPreferenceStyle + */ + public static final int PreferenceTheme_switchPreferenceStyle = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#yesNoPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:yesNoPreferenceStyle + */ + public static final int PreferenceTheme_yesNoPreferenceStyle = 9; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010052, 0x7f010053, + 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, + 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010031 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SeekBarPreference. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #SeekBarPreference_adjustable net.kdt.pojavlaunch:adjustable}
{@link #SeekBarPreference_android_layout android:layout}
{@link #SeekBarPreference_android_max android:max}
{@link #SeekBarPreference_min net.kdt.pojavlaunch:min}
{@link #SeekBarPreference_seekBarIncrement net.kdt.pojavlaunch:seekBarIncrement}
{@link #SeekBarPreference_showSeekBarValue net.kdt.pojavlaunch:showSeekBarValue}
+ @see #SeekBarPreference_adjustable + @see #SeekBarPreference_android_layout + @see #SeekBarPreference_android_max + @see #SeekBarPreference_min + @see #SeekBarPreference_seekBarIncrement + @see #SeekBarPreference_showSeekBarValue + */ + public static final int[] SeekBarPreference = { + 0x010100f2, 0x01010136, 0x7f010186, 0x7f010187, + 0x7f010188, 0x7f010189 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#adjustable} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:adjustable + */ + public static final int SeekBarPreference_adjustable = 4; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #SeekBarPreference} array. + @attr name android:layout + */ + public static final int SeekBarPreference_android_layout = 0; + /** +

This symbol is the offset where the {@link android.R.attr#max} + attribute's value can be found in the {@link #SeekBarPreference} array. + @attr name android:max + */ + public static final int SeekBarPreference_android_max = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#min} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:min + */ + public static final int SeekBarPreference_min = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarIncrement} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:seekBarIncrement + */ + public static final int SeekBarPreference_seekBarIncrement = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showSeekBarValue} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showSeekBarValue + */ + public static final int SeekBarPreference_showSeekBarValue = 5; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010033, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a SwitchPreference. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchPreference_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreference_android_summaryOff android:summaryOff}
{@link #SwitchPreference_android_summaryOn android:summaryOn}
{@link #SwitchPreference_android_switchTextOff android:switchTextOff}
{@link #SwitchPreference_android_switchTextOn android:switchTextOn}
{@link #SwitchPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreference_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreference_switchTextOn net.kdt.pojavlaunch:switchTextOn}
+ @see #SwitchPreference_android_disableDependentsState + @see #SwitchPreference_android_summaryOff + @see #SwitchPreference_android_summaryOn + @see #SwitchPreference_android_switchTextOff + @see #SwitchPreference_android_switchTextOn + @see #SwitchPreference_disableDependentsState + @see #SwitchPreference_summaryOff + @see #SwitchPreference_summaryOn + @see #SwitchPreference_switchTextOff + @see #SwitchPreference_switchTextOn + */ + public static final int[] SwitchPreference = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, + 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, + 0x7f01018a, 0x7f01018b + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:disableDependentsState + */ + public static final int SwitchPreference_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:summaryOff + */ + public static final int SwitchPreference_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:summaryOn + */ + public static final int SwitchPreference_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:switchTextOff + */ + public static final int SwitchPreference_android_switchTextOff = 4; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:switchTextOn + */ + public static final int SwitchPreference_android_switchTextOn = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int SwitchPreference_disableDependentsState = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int SwitchPreference_summaryOff = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int SwitchPreference_summaryOn = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOff + */ + public static final int SwitchPreference_switchTextOff = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOn + */ + public static final int SwitchPreference_switchTextOn = 8; + /** Attributes that can be used with a SwitchPreferenceCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchPreferenceCompat_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreferenceCompat_android_summaryOff android:summaryOff}
{@link #SwitchPreferenceCompat_android_summaryOn android:summaryOn}
{@link #SwitchPreferenceCompat_android_switchTextOff android:switchTextOff}
{@link #SwitchPreferenceCompat_android_switchTextOn android:switchTextOn}
{@link #SwitchPreferenceCompat_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreferenceCompat_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreferenceCompat_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreferenceCompat_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreferenceCompat_switchTextOn net.kdt.pojavlaunch:switchTextOn}
+ @see #SwitchPreferenceCompat_android_disableDependentsState + @see #SwitchPreferenceCompat_android_summaryOff + @see #SwitchPreferenceCompat_android_summaryOn + @see #SwitchPreferenceCompat_android_switchTextOff + @see #SwitchPreferenceCompat_android_switchTextOn + @see #SwitchPreferenceCompat_disableDependentsState + @see #SwitchPreferenceCompat_summaryOff + @see #SwitchPreferenceCompat_summaryOn + @see #SwitchPreferenceCompat_switchTextOff + @see #SwitchPreferenceCompat_switchTextOn + */ + public static final int[] SwitchPreferenceCompat = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, + 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, + 0x7f01018a, 0x7f01018b + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:disableDependentsState + */ + public static final int SwitchPreferenceCompat_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:summaryOff + */ + public static final int SwitchPreferenceCompat_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:summaryOn + */ + public static final int SwitchPreferenceCompat_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:switchTextOff + */ + public static final int SwitchPreferenceCompat_android_switchTextOff = 4; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:switchTextOn + */ + public static final int SwitchPreferenceCompat_android_switchTextOn = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int SwitchPreferenceCompat_disableDependentsState = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int SwitchPreferenceCompat_summaryOff = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int SwitchPreferenceCompat_summaryOn = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOff + */ + public static final int SwitchPreferenceCompat_switchTextOff = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOn + */ + public static final int SwitchPreferenceCompat_switchTextOn = 8; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f010044, 0x7f010045, + 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/v4/R.java b/app/build/gen/android/support/v4/R.java new file mode 100644 index 000000000..d9cf92b94 --- /dev/null +++ b/app/build/gen/android/support/v4/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v4; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/v7/appcompat/R.java b/app/build/gen/android/support/v7/appcompat/R.java new file mode 100644 index 000000000..4016140bf --- /dev/null +++ b/app/build/gen/android/support/v7/appcompat/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.appcompat; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/v7/preference/R.java b/app/build/gen/android/support/v7/preference/R.java new file mode 100644 index 000000000..ad2bdf7e4 --- /dev/null +++ b/app/build/gen/android/support/v7/preference/R.java @@ -0,0 +1,13342 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.preference; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0e0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int adjustable=0x7f010188; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerAbove=0x7f010167; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerAfterLastItem=0x7f01016b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowDividerBelow=0x7f010168; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f010032; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f010005; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010007; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010027; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f010021; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkBoxPreferenceStyle=0x7f010177; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f01000e; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010048; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". + */ + public static final int defaultValue=0x7f010165; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dependency=0x7f010163; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogIcon=0x7f010156; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogLayout=0x7f010159; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogMessage=0x7f010155; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogPreferenceStyle=0x7f010179; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogTitle=0x7f010154; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int disableDependentsState=0x7f010153; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropdownPreferenceStyle=0x7f01017c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextPreferenceStyle=0x7f01017a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int enabled=0x7f010161; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entries=0x7f01015a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entryValues=0x7f01015b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010000; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010008; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010009; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f01000a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f01000d; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f010025; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010193; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f01018c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f01018f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010190; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010191; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f01018d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f01018e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010192; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010194; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f01002a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fragment=0x7f01015f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010030; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f01004c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f010044; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconSpaceReserved=0x7f01016a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f010031; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f01002e; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f01002c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f01002f; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f01002d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int key=0x7f01015c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f01001c; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f01001b; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010017; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010018; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010020; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f01001f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f01001d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f010003; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxHeight=0x7f01016e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxWidth=0x7f01016d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f01002b; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int min=0x7f010186; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int negativeButtonText=0x7f010158; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int order=0x7f01015e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int orderingFromXml=0x7f01016c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f01004e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f01004d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010050; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f010051; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int persistent=0x7f010164; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int positiveButtonText=0x7f010157; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceActivityStyle=0x7f010171; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceCategoryStyle=0x7f010174; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentCompatStyle=0x7f010173; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentListStyle=0x7f010181; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preferenceFragmentPaddingSide=0x7f010182; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceFragmentStyle=0x7f010172; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceHeaderPanelStyle=0x7f01017f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceInformationStyle=0x7f010176; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceLayoutChild=0x7f01017d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceListStyle=0x7f010180; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferencePanelStyle=0x7f01017e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceScreenStyle=0x7f010170; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceStyle=0x7f010175; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceTheme=0x7f01016f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ringtonePreferenceStyle=0x7f01017b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f010024; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f010013; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f010012; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int seekBarIncrement=0x7f010187; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarPreferenceStyle=0x7f010185; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int selectable=0x7f010162; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shouldDisableView=0x7f010166; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showSeekBarValue=0x7f010189; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int singleLineTitle=0x7f010169; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010053; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f010002; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f01001a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010010; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summary=0x7f01015d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOff=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOn=0x7f010151; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchPreferenceCompatStyle=0x7f010184; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchPreferenceStyle=0x7f010183; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOff=0x7f01018b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOn=0x7f01018a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010037; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f010036; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010039; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f010034; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f01003b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f01003a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010038; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f010043; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f010042; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f01003f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010040; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f01003e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f01003c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f01003d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f010023; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f010016; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010028; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int widgetLayout=0x7f010160; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int yesNoPreferenceStyle=0x7f010178; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0d0000; + public static final int abc_allow_stacked_button_bar=0x7f0d0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0048; + public static final int abc_background_cache_hint_selector_material_light=0x7f0b0049; + public static final int abc_btn_colored_borderless_text_material=0x7f0b004a; + public static final int abc_btn_colored_text_material=0x7f0b004b; + public static final int abc_color_highlight_material=0x7f0b004c; + public static final int abc_hint_foreground_material_dark=0x7f0b004d; + public static final int abc_hint_foreground_material_light=0x7f0b004e; + public static final int abc_input_method_navigation_guard=0x7f0b000a; + public static final int abc_primary_text_disable_only_material_dark=0x7f0b004f; + public static final int abc_primary_text_disable_only_material_light=0x7f0b0050; + public static final int abc_primary_text_material_dark=0x7f0b0051; + public static final int abc_primary_text_material_light=0x7f0b0052; + public static final int abc_search_url_text=0x7f0b0053; + public static final int abc_search_url_text_normal=0x7f0b000b; + public static final int abc_search_url_text_pressed=0x7f0b000c; + public static final int abc_search_url_text_selected=0x7f0b000d; + public static final int abc_secondary_text_material_dark=0x7f0b0054; + public static final int abc_secondary_text_material_light=0x7f0b0055; + public static final int abc_tint_btn_checkable=0x7f0b0056; + public static final int abc_tint_default=0x7f0b0057; + public static final int abc_tint_edittext=0x7f0b0058; + public static final int abc_tint_seek_thumb=0x7f0b0059; + public static final int abc_tint_spinner=0x7f0b005a; + public static final int abc_tint_switch_track=0x7f0b005b; + public static final int accent_material_dark=0x7f0b000e; + public static final int accent_material_light=0x7f0b000f; + public static final int background_floating_material_dark=0x7f0b0010; + public static final int background_floating_material_light=0x7f0b0011; + public static final int background_material_dark=0x7f0b0012; + public static final int background_material_light=0x7f0b0013; + public static final int bright_foreground_disabled_material_dark=0x7f0b0014; + public static final int bright_foreground_disabled_material_light=0x7f0b0015; + public static final int bright_foreground_inverse_material_dark=0x7f0b0016; + public static final int bright_foreground_inverse_material_light=0x7f0b0017; + public static final int bright_foreground_material_dark=0x7f0b0018; + public static final int bright_foreground_material_light=0x7f0b0019; + public static final int button_material_dark=0x7f0b001a; + public static final int button_material_light=0x7f0b001b; + public static final int design_bottom_navigation_shadow_color=0x7f0b0000; + public static final int design_error=0x7f0b005c; + public static final int design_fab_shadow_end_color=0x7f0b0001; + public static final int design_fab_shadow_mid_color=0x7f0b0002; + public static final int design_fab_shadow_start_color=0x7f0b0003; + public static final int design_fab_stroke_end_inner_color=0x7f0b0004; + public static final int design_fab_stroke_end_outer_color=0x7f0b0005; + public static final int design_fab_stroke_top_inner_color=0x7f0b0006; + public static final int design_fab_stroke_top_outer_color=0x7f0b0007; + public static final int design_snackbar_background_color=0x7f0b0008; + public static final int design_tint_password_toggle=0x7f0b005d; + public static final int dim_foreground_disabled_material_dark=0x7f0b001c; + public static final int dim_foreground_disabled_material_light=0x7f0b001d; + public static final int dim_foreground_material_dark=0x7f0b001e; + public static final int dim_foreground_material_light=0x7f0b001f; + public static final int error_color_material=0x7f0b0020; + public static final int foreground_material_dark=0x7f0b0021; + public static final int foreground_material_light=0x7f0b0022; + public static final int highlighted_text_material_dark=0x7f0b0023; + public static final int highlighted_text_material_light=0x7f0b0024; + public static final int material_blue_grey_800=0x7f0b0025; + public static final int material_blue_grey_900=0x7f0b0026; + public static final int material_blue_grey_950=0x7f0b0027; + public static final int material_deep_teal_200=0x7f0b0028; + public static final int material_deep_teal_500=0x7f0b0029; + public static final int material_grey_100=0x7f0b002a; + public static final int material_grey_300=0x7f0b002b; + public static final int material_grey_50=0x7f0b002c; + public static final int material_grey_600=0x7f0b002d; + public static final int material_grey_800=0x7f0b002e; + public static final int material_grey_850=0x7f0b002f; + public static final int material_grey_900=0x7f0b0030; + public static final int notification_action_color_filter=0x7f0b0046; + public static final int notification_icon_bg_color=0x7f0b0047; + public static final int notification_material_background_media_default_color=0x7f0b0045; + public static final int preference_fallback_accent_color=0x7f0b0009; + public static final int primary_dark_material_dark=0x7f0b0031; + public static final int primary_dark_material_light=0x7f0b0032; + public static final int primary_material_dark=0x7f0b0033; + public static final int primary_material_light=0x7f0b0034; + public static final int primary_text_default_material_dark=0x7f0b0035; + public static final int primary_text_default_material_light=0x7f0b0036; + public static final int primary_text_disabled_material_dark=0x7f0b0037; + public static final int primary_text_disabled_material_light=0x7f0b0038; + public static final int ripple_material_dark=0x7f0b0039; + public static final int ripple_material_light=0x7f0b003a; + public static final int secondary_text_default_material_dark=0x7f0b003b; + public static final int secondary_text_default_material_light=0x7f0b003c; + public static final int secondary_text_disabled_material_dark=0x7f0b003d; + public static final int secondary_text_disabled_material_light=0x7f0b003e; + public static final int switch_thumb_disabled_material_dark=0x7f0b003f; + public static final int switch_thumb_disabled_material_light=0x7f0b0040; + public static final int switch_thumb_material_dark=0x7f0b005e; + public static final int switch_thumb_material_light=0x7f0b005f; + public static final int switch_thumb_normal_material_dark=0x7f0b0041; + public static final int switch_thumb_normal_material_light=0x7f0b0042; + public static final int tooltip_background_dark=0x7f0b0043; + public static final int tooltip_background_light=0x7f0b0044; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f090038; + public static final int abc_action_bar_content_inset_with_nav=0x7f090039; + public static final int abc_action_bar_default_height_material=0x7f09002d; + public static final int abc_action_bar_default_padding_end_material=0x7f09003a; + public static final int abc_action_bar_default_padding_start_material=0x7f09003b; + public static final int abc_action_bar_elevation_material=0x7f09003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f09003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f09003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f090040; + public static final int abc_action_bar_progress_bar_size=0x7f09002e; + public static final int abc_action_bar_stacked_max_height=0x7f090041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f090042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f090043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f090044; + public static final int abc_action_button_min_height_material=0x7f090045; + public static final int abc_action_button_min_width_material=0x7f090046; + public static final int abc_action_button_min_width_overflow_material=0x7f090047; + public static final int abc_alert_dialog_button_bar_height=0x7f09002c; + public static final int abc_button_inset_horizontal_material=0x7f090048; + public static final int abc_button_inset_vertical_material=0x7f090049; + public static final int abc_button_padding_horizontal_material=0x7f09004a; + public static final int abc_button_padding_vertical_material=0x7f09004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f09004c; + public static final int abc_config_prefDialogWidth=0x7f090031; + public static final int abc_control_corner_material=0x7f09004d; + public static final int abc_control_inset_material=0x7f09004e; + public static final int abc_control_padding_material=0x7f09004f; + public static final int abc_dialog_fixed_height_major=0x7f090032; + public static final int abc_dialog_fixed_height_minor=0x7f090033; + public static final int abc_dialog_fixed_width_major=0x7f090034; + public static final int abc_dialog_fixed_width_minor=0x7f090035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f090050; + public static final int abc_dialog_list_padding_top_no_title=0x7f090051; + public static final int abc_dialog_min_width_major=0x7f090036; + public static final int abc_dialog_min_width_minor=0x7f090037; + public static final int abc_dialog_padding_material=0x7f090052; + public static final int abc_dialog_padding_top_material=0x7f090053; + public static final int abc_dialog_title_divider_material=0x7f090054; + public static final int abc_disabled_alpha_material_dark=0x7f090055; + public static final int abc_disabled_alpha_material_light=0x7f090056; + public static final int abc_dropdownitem_icon_width=0x7f090057; + public static final int abc_dropdownitem_text_padding_left=0x7f090058; + public static final int abc_dropdownitem_text_padding_right=0x7f090059; + public static final int abc_edit_text_inset_bottom_material=0x7f09005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f09005b; + public static final int abc_edit_text_inset_top_material=0x7f09005c; + public static final int abc_floating_window_z=0x7f09005d; + public static final int abc_list_item_padding_horizontal_material=0x7f09005e; + public static final int abc_panel_menu_list_width=0x7f09005f; + public static final int abc_progress_bar_height_material=0x7f090060; + public static final int abc_search_view_preferred_height=0x7f090061; + public static final int abc_search_view_preferred_width=0x7f090062; + public static final int abc_seekbar_track_background_height_material=0x7f090063; + public static final int abc_seekbar_track_progress_height_material=0x7f090064; + public static final int abc_select_dialog_padding_start_material=0x7f090065; + public static final int abc_switch_padding=0x7f09003c; + public static final int abc_text_size_body_1_material=0x7f090066; + public static final int abc_text_size_body_2_material=0x7f090067; + public static final int abc_text_size_button_material=0x7f090068; + public static final int abc_text_size_caption_material=0x7f090069; + public static final int abc_text_size_display_1_material=0x7f09006a; + public static final int abc_text_size_display_2_material=0x7f09006b; + public static final int abc_text_size_display_3_material=0x7f09006c; + public static final int abc_text_size_display_4_material=0x7f09006d; + public static final int abc_text_size_headline_material=0x7f09006e; + public static final int abc_text_size_large_material=0x7f09006f; + public static final int abc_text_size_medium_material=0x7f090070; + public static final int abc_text_size_menu_header_material=0x7f090071; + public static final int abc_text_size_menu_material=0x7f090072; + public static final int abc_text_size_small_material=0x7f090073; + public static final int abc_text_size_subhead_material=0x7f090074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f09002f; + public static final int abc_text_size_title_material=0x7f090075; + public static final int abc_text_size_title_material_toolbar=0x7f090030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f09009f; + public static final int activity_vertical_margin=0x7f0900a0; + public static final int compat_button_inset_horizontal_material=0x7f09008f; + public static final int compat_button_inset_vertical_material=0x7f090090; + public static final int compat_button_padding_horizontal_material=0x7f090091; + public static final int compat_button_padding_vertical_material=0x7f090092; + public static final int compat_control_corner_material=0x7f090093; + public static final int design_appbar_elevation=0x7f090008; + public static final int design_bottom_navigation_active_item_max_width=0x7f090009; + public static final int design_bottom_navigation_active_text_size=0x7f09000a; + public static final int design_bottom_navigation_elevation=0x7f09000b; + public static final int design_bottom_navigation_height=0x7f09000c; + public static final int design_bottom_navigation_item_max_width=0x7f09000d; + public static final int design_bottom_navigation_item_min_width=0x7f09000e; + public static final int design_bottom_navigation_margin=0x7f09000f; + public static final int design_bottom_navigation_shadow_height=0x7f090010; + public static final int design_bottom_navigation_text_size=0x7f090011; + public static final int design_bottom_sheet_modal_elevation=0x7f090012; + public static final int design_bottom_sheet_peek_height_min=0x7f090013; + public static final int design_fab_border_width=0x7f090014; + public static final int design_fab_elevation=0x7f090015; + public static final int design_fab_image_size=0x7f090016; + public static final int design_fab_size_mini=0x7f090017; + public static final int design_fab_size_normal=0x7f090018; + public static final int design_fab_translation_z_pressed=0x7f090019; + public static final int design_navigation_elevation=0x7f09001a; + public static final int design_navigation_icon_padding=0x7f09001b; + public static final int design_navigation_icon_size=0x7f09001c; + public static final int design_navigation_max_width=0x7f090000; + public static final int design_navigation_padding_bottom=0x7f09001d; + public static final int design_navigation_separator_vertical_padding=0x7f09001e; + public static final int design_snackbar_action_inline_max_width=0x7f090001; + public static final int design_snackbar_background_corner_radius=0x7f090002; + public static final int design_snackbar_elevation=0x7f09001f; + public static final int design_snackbar_extra_spacing_horizontal=0x7f090003; + public static final int design_snackbar_max_width=0x7f090004; + public static final int design_snackbar_min_width=0x7f090005; + public static final int design_snackbar_padding_horizontal=0x7f090020; + public static final int design_snackbar_padding_vertical=0x7f090021; + public static final int design_snackbar_padding_vertical_2lines=0x7f090006; + public static final int design_snackbar_text_size=0x7f090022; + public static final int design_tab_max_width=0x7f090023; + public static final int design_tab_scrollable_min_width=0x7f090007; + public static final int design_tab_text_size=0x7f090024; + public static final int design_tab_text_size_2line=0x7f090025; + public static final int disabled_alpha_material_dark=0x7f090076; + public static final int disabled_alpha_material_light=0x7f090077; + public static final int empty_icon_height=0x7f0900a9; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0900a8; + public static final int fastscroll_default_thickness=0x7f090026; + public static final int fastscroll_margin=0x7f090027; + public static final int fastscroll_minimum_range=0x7f090028; + public static final int highlight_alpha_material_colored=0x7f090078; + public static final int highlight_alpha_material_dark=0x7f090079; + public static final int highlight_alpha_material_light=0x7f09007a; + public static final int hint_alpha_material_dark=0x7f09007b; + public static final int hint_alpha_material_light=0x7f09007c; + public static final int hint_pressed_alpha_material_dark=0x7f09007d; + public static final int hint_pressed_alpha_material_light=0x7f09007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090029; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f09002a; + public static final int item_touch_helper_swipe_escape_velocity=0x7f09002b; + public static final int navigation_header_height=0x7f0900aa; + public static final int navigation_item_height=0x7f0900ab; + public static final int navigation_item_icon_size=0x7f0900ac; + public static final int notification_action_icon_size=0x7f090094; + public static final int notification_action_text_size=0x7f090095; + public static final int notification_big_circle_margin=0x7f090096; + public static final int notification_content_margin_start=0x7f09008c; + public static final int notification_large_icon_height=0x7f090097; + public static final int notification_large_icon_width=0x7f090098; + public static final int notification_main_column_padding_top=0x7f09008d; + public static final int notification_media_narrow_margin=0x7f09008e; + public static final int notification_right_icon_size=0x7f090099; + public static final int notification_right_side_padding_top=0x7f09008b; + public static final int notification_small_icon_background_padding=0x7f09009a; + public static final int notification_small_icon_size_as_large=0x7f09009b; + public static final int notification_subtext_size=0x7f09009c; + public static final int notification_top_pad=0x7f09009d; + public static final int notification_top_pad_large_text=0x7f09009e; + public static final int padding_extra_extra_large=0x7f0900a7; + public static final int padding_extra_large=0x7f0900a6; + public static final int padding_large=0x7f0900a5; + public static final int padding_medium=0x7f0900a4; + public static final int padding_small=0x7f0900a3; + /** Padding + */ + public static final int padding_tiny=0x7f0900a1; + public static final int padding_tiny_plus_one=0x7f0900a2; + public static final int preference_icon_minWidth=0x7f090087; + public static final int preference_seekbar_padding_end=0x7f090088; + public static final int preference_seekbar_padding_start=0x7f090089; + public static final int preference_seekbar_value_width=0x7f09008a; + public static final int tooltip_corner_radius=0x7f09007f; + public static final int tooltip_horizontal_padding=0x7f090080; + public static final int tooltip_margin=0x7f090081; + public static final int tooltip_precise_anchor_extra_offset=0x7f090082; + public static final int tooltip_precise_anchor_threshold=0x7f090083; + public static final int tooltip_vertical_padding=0x7f090084; + public static final int tooltip_y_offset_non_touch=0x7f090085; + public static final int tooltip_y_offset_touch=0x7f090086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007c; + public static final int notification_template_icon_low_bg=0x7f02007d; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int preference_list_divider_material=0x7f020078; + public static final int toggle_log=0x7f020079; + public static final int tooltip_frame_dark=0x7f02007a; + public static final int tooltip_frame_light=0x7f02007b; + } + public static final class id { + public static final int ALT=0x7f07004a; + public static final int CTRL=0x7f07004b; + public static final int FUNCTION=0x7f07004c; + public static final int META=0x7f07004d; + public static final int SHIFT=0x7f07004e; + public static final int SYM=0x7f07004f; + public static final int action0=0x7f0700d8; + public static final int action_bar=0x7f07007b; + public static final int action_bar_activity_content=0x7f07000e; + public static final int action_bar_container=0x7f07007a; + public static final int action_bar_root=0x7f070076; + public static final int action_bar_spinner=0x7f07000f; + public static final int action_bar_subtitle=0x7f07005a; + public static final int action_bar_title=0x7f070059; + public static final int action_container=0x7f0700d5; + public static final int action_context_bar=0x7f07007c; + public static final int action_divider=0x7f0700dc; + public static final int action_image=0x7f0700d6; + public static final int action_menu_divider=0x7f070010; + public static final int action_menu_presenter=0x7f070011; + public static final int action_mode_bar=0x7f070078; + public static final int action_mode_bar_stub=0x7f070077; + public static final int action_mode_close_button=0x7f07005b; + public static final int action_text=0x7f0700d7; + public static final int actions=0x7f0700e5; + public static final int activity_chooser_view_content=0x7f07005c; + public static final int add=0x7f070045; + public static final int alertTitle=0x7f07006f; + public static final int all=0x7f070033; + public static final int always=0x7f070050; + public static final int async=0x7f070055; + public static final int auto=0x7f070021; + public static final int beginning=0x7f070048; + public static final int blocking=0x7f070056; + public static final int bottom=0x7f070022; + public static final int bottombar_author_logo=0x7f07008b; + public static final int bottombar_version_view=0x7f07008a; + public static final int buttonPanel=0x7f070062; + public static final int cancel_action=0x7f0700d9; + public static final int center=0x7f070023; + public static final int center_horizontal=0x7f070024; + public static final int center_vertical=0x7f070025; + public static final int checkbox=0x7f070072; + public static final int chronometer=0x7f0700e1; + public static final int clip_horizontal=0x7f07002f; + public static final int clip_vertical=0x7f070030; + public static final int collapseActionView=0x7f070051; + public static final int container=0x7f070094; + public static final int contentPanel=0x7f070065; + public static final int content_frame=0x7f0700b9; + public static final int content_log_close_button=0x7f0700d0; + public static final int content_log_layout=0x7f0700cf; + public static final int content_log_scroll=0x7f0700d2; + public static final int content_log_toggle_log=0x7f0700d1; + public static final int content_text_debug=0x7f0700d3; + public static final int control_debug=0x7f0700be; + public static final int control_down=0x7f0700c4; + public static final int control_inventory=0x7f0700cc; + public static final int control_jump=0x7f0700c8; + public static final int control_keyboard=0x7f0700c0; + public static final int control_left=0x7f0700c6; + public static final int control_listplayers=0x7f0700c3; + public static final int control_mouse_toggle=0x7f0700cd; + public static final int control_primary=0x7f0700c9; + public static final int control_right=0x7f0700c7; + public static final int control_secondary=0x7f0700ca; + public static final int control_shift=0x7f0700cb; + public static final int control_talk=0x7f0700bf; + public static final int control_thirdperson=0x7f0700c1; + public static final int control_togglecontrol=0x7f0700ce; + public static final int control_up=0x7f0700c5; + public static final int control_zoom=0x7f0700c2; + public static final int controlsetting_checkbox_hidden=0x7f070091; + public static final int controlsetting_edit_name=0x7f07008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f070090; + public static final int coordinator=0x7f070095; + public static final int custom=0x7f07006c; + public static final int customPanel=0x7f07006b; + public static final int customctrl_controllayout=0x7f07008d; + public static final int customctrl_drawerlayout=0x7f07008c; + public static final int customctrl_navigation_view=0x7f07008e; + public static final int decor_content_parent=0x7f070079; + public static final int default_activity_button=0x7f07005f; + public static final int design_bottom_sheet=0x7f070097; + public static final int design_menu_item_action_area=0x7f07009e; + public static final int design_menu_item_action_area_stub=0x7f07009d; + public static final int design_menu_item_text=0x7f07009c; + public static final int design_navigation_view=0x7f07009b; + public static final int disableHome=0x7f07003f; + public static final int edit_query=0x7f07007d; + public static final int end=0x7f070026; + public static final int end_padder=0x7f0700e7; + public static final int enterAlways=0x7f07001c; + public static final int enterAlwaysCollapsed=0x7f07001d; + public static final int exitUntilCollapsed=0x7f07001e; + public static final int expand_activities_button=0x7f07005d; + public static final int expanded_menu=0x7f070071; + public static final int fill=0x7f070031; + public static final int fill_horizontal=0x7f070032; + public static final int fill_vertical=0x7f070027; + public static final int fixed=0x7f070036; + public static final int forever=0x7f070057; + public static final int ghost_view=0x7f070000; + public static final int home=0x7f070012; + public static final int homeAsUp=0x7f070040; + public static final int icon=0x7f070061; + public static final int icon_frame=0x7f0700e8; + public static final int icon_group=0x7f0700e6; + public static final int ifRoom=0x7f070052; + public static final int image=0x7f07005e; + public static final int info=0x7f0700e2; + public static final int italic=0x7f070058; + public static final int item_touch_helper_previous_elevation=0x7f07000d; + public static final int lMTVVer=0x7f0700ab; + public static final int largeLabel=0x7f070093; + public static final int launcherAccEmail=0x7f0700a0; + public static final int launcherAccOffSwitch=0x7f0700a3; + public static final int launcherAccPassword=0x7f0700a1; + public static final int launcherAccProgress=0x7f0700a4; + public static final int launcherAccRememberSwitch=0x7f0700a2; + public static final int launcherAccUsername=0x7f0700b4; + public static final int launcherMainExitbtns=0x7f0700b1; + public static final int launcherMainLeftLayout=0x7f0700aa; + public static final int launcherMainPlayButton=0x7f0700ad; + public static final int launcherMainRightLayout=0x7f0700ae; + public static final int launcherMainSelectVersion=0x7f0700ac; + public static final int launcherMainUsernameView=0x7f0700af; + public static final int launcherMainVersionView=0x7f0700b0; + public static final int launchermainFragmentTabView=0x7f0700a5; + public static final int launchermainTabLayout=0x7f0700a6; + public static final int launchermainTabPager=0x7f0700a7; + public static final int launcherupdateLogView=0x7f0700b3; + public static final int launcherupdateProgressBar=0x7f0700b2; + public static final int left=0x7f070028; + public static final int line1=0x7f070017; + public static final int line3=0x7f070018; + public static final int list=0x7f0700ea; + public static final int listMode=0x7f07003d; + public static final int list_item=0x7f070060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0700b6; + public static final int lmaintabconsoleLogTextView=0x7f0700b5; + public static final int lmaintabnewsNewsView=0x7f0700b7; + public static final int main_drawer_options=0x7f0700b8; + public static final int main_game_render_view=0x7f0700bb; + public static final int main_log_behind_GL=0x7f0700ba; + public static final int main_mouse_pointer=0x7f0700bd; + public static final int main_navigation_view=0x7f0700d4; + public static final int main_touchpad=0x7f0700bc; + public static final int masked=0x7f070102; + public static final int media_actions=0x7f0700db; + public static final int menu_ctrl_add=0x7f070104; + public static final int menu_ctrl_edit=0x7f070105; + public static final int menu_ctrl_load=0x7f070103; + public static final int menu_ctrl_remove=0x7f070106; + public static final int message=0x7f0700fa; + public static final int middle=0x7f070049; + public static final int mini=0x7f070034; + public static final int multiply=0x7f070038; + public static final int nav_customkey=0x7f07010a; + public static final int nav_debug=0x7f070109; + public static final int nav_forceclose=0x7f070107; + public static final int nav_viewlog=0x7f070108; + public static final int navigation_header_container=0x7f07009a; + public static final int never=0x7f070053; + public static final int none=0x7f07002c; + public static final int normal=0x7f070035; + public static final int notification_background=0x7f0700e4; + public static final int notification_main_column=0x7f0700de; + public static final int notification_main_column_container=0x7f0700dd; + public static final int parallax=0x7f07002d; + public static final int parentPanel=0x7f070064; + public static final int parent_matrix=0x7f070001; + public static final int pin=0x7f07002e; + public static final int progressDownloadBar=0x7f0700a8; + public static final int progressDownloadText=0x7f0700a9; + public static final int progress_circular=0x7f070013; + public static final int progress_horizontal=0x7f070014; + public static final int radio=0x7f070074; + public static final int right=0x7f070029; + public static final int right_icon=0x7f0700e3; + public static final int right_side=0x7f0700df; + public static final int save_image_matrix=0x7f070002; + public static final int save_non_transition_alpha=0x7f070003; + public static final int save_scale_type=0x7f070004; + public static final int screen=0x7f070039; + public static final int scroll=0x7f07001f; + public static final int scrollIndicatorDown=0x7f07006a; + public static final int scrollIndicatorUp=0x7f070066; + public static final int scrollView=0x7f070067; + public static final int scrollable=0x7f070037; + public static final int search_badge=0x7f07007f; + public static final int search_bar=0x7f07007e; + public static final int search_button=0x7f070080; + public static final int search_close_btn=0x7f070085; + public static final int search_edit_frame=0x7f070081; + public static final int search_go_btn=0x7f070087; + public static final int search_mag_icon=0x7f070082; + public static final int search_plate=0x7f070083; + public static final int search_src_text=0x7f070084; + public static final int search_voice_btn=0x7f070088; + public static final int seekbar=0x7f0700eb; + public static final int seekbar_value=0x7f0700ec; + public static final int select_dialog_listview=0x7f070089; + public static final int setting_progressseek_control=0x7f0700f1; + public static final int setting_progressseek_maxdxref=0x7f0700ef; + public static final int settings_checkbox_vertype_oldalpha=0x7f0700f6; + public static final int settings_checkbox_vertype_oldbeta=0x7f0700f7; + public static final int settings_checkbox_vertype_release=0x7f0700f4; + public static final int settings_checkbox_vertype_snapshot=0x7f0700f5; + public static final int settings_seekbar_controlsize=0x7f0700f0; + public static final int settings_seekbar_setmaxdxref=0x7f0700ee; + public static final int settings_switch_enablefreeform=0x7f0700f2; + public static final int settings_switch_forgetoptifpath=0x7f0700f3; + public static final int shortcut=0x7f070073; + public static final int showCustom=0x7f070041; + public static final int showHome=0x7f070042; + public static final int showTitle=0x7f070043; + public static final int smallLabel=0x7f070092; + public static final int snackbar_action=0x7f070099; + public static final int snackbar_text=0x7f070098; + public static final int snap=0x7f070020; + public static final int spacer=0x7f070063; + public static final int spinner=0x7f0700e9; + public static final int split_action_bar=0x7f070015; + public static final int src_atop=0x7f07003a; + public static final int src_in=0x7f07003b; + public static final int src_over=0x7f07003c; + public static final int start=0x7f07002a; + public static final int startscreenLinearLayout1=0x7f0700f8; + public static final int startscreenProgress=0x7f0700f9; + public static final int status_bar_latest_event_content=0x7f0700da; + public static final int submenuarrow=0x7f070075; + public static final int submit_area=0x7f070086; + public static final int switchWidget=0x7f0700ed; + public static final int tabMode=0x7f07003e; + public static final int text=0x7f070019; + public static final int text2=0x7f07001a; + public static final int textSpacerNoButtons=0x7f070069; + public static final int textSpacerNoTitle=0x7f070068; + public static final int text_input_password_toggle=0x7f07009f; + public static final int textinput_counter=0x7f07000a; + public static final int textinput_error=0x7f07000b; + public static final int time=0x7f0700e0; + public static final int title=0x7f07001b; + public static final int titleDividerNoCustom=0x7f070070; + public static final int title_template=0x7f07006e; + public static final int top=0x7f07002b; + public static final int topPanel=0x7f07006d; + public static final int topbar_earth_icon=0x7f0700fb; + public static final int topbar_help_text=0x7f0700fd; + public static final int topbar_language_text=0x7f0700fc; + public static final int topbar_logo=0x7f0700fe; + public static final int topbar_navmenu_icon=0x7f0700ff; + public static final int topbar_undertop_view=0x7f070100; + public static final int touch_outside=0x7f070096; + public static final int transition_current_scene=0x7f070005; + public static final int transition_layout_save=0x7f070006; + public static final int transition_position=0x7f070007; + public static final int transition_scene_layoutid_cache=0x7f070008; + public static final int transition_transform=0x7f070009; + public static final int uniform=0x7f070046; + public static final int up=0x7f070016; + public static final int useLogo=0x7f070044; + public static final int ver_clone=0x7f07010b; + public static final int ver_edit=0x7f07010c; + public static final int ver_remove=0x7f07010d; + public static final int view_offset_helper=0x7f07000c; + public static final int visible=0x7f070101; + public static final int withText=0x7f070054; + public static final int wrap_content=0x7f070047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0a0005; + public static final int abc_config_activityShortDur=0x7f0a0006; + public static final int app_bar_elevation_anim_duration=0x7f0a0001; + public static final int bottom_sheet_slide_duration=0x7f0a0002; + public static final int cancel_button_image_alpha=0x7f0a0007; + public static final int config_tooltipAnimTime=0x7f0a0008; + public static final int design_snackbar_text_max_lines=0x7f0a0000; + public static final int hide_password_duration=0x7f0a0003; + public static final int show_password_duration=0x7f0a0004; + public static final int status_bar_notification_info_maxnum=0x7f0a0009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int preference=0x7f030043; + public static final int preference_category=0x7f030044; + public static final int preference_category_material=0x7f030045; + public static final int preference_dialog_edittext=0x7f030046; + public static final int preference_dropdown=0x7f030047; + public static final int preference_dropdown_material=0x7f030048; + public static final int preference_information=0x7f030049; + public static final int preference_information_material=0x7f03004a; + public static final int preference_list_fragment=0x7f03004b; + public static final int preference_material=0x7f03004c; + public static final int preference_recyclerview=0x7f03004d; + public static final int preference_widget_checkbox=0x7f03004e; + public static final int preference_widget_seekbar=0x7f03004f; + public static final int preference_widget_seekbar_material=0x7f030050; + public static final int preference_widget_switch=0x7f030051; + public static final int preference_widget_switch_compat=0x7f030052; + public static final int select_dialog_item_material=0x7f030053; + public static final int select_dialog_multichoice_material=0x7f030054; + public static final int select_dialog_singlechoice_material=0x7f030055; + public static final int settings=0x7f030056; + public static final int start_screen=0x7f030057; + public static final int support_simple_spinner_dropdown_item=0x7f030058; + public static final int tooltip=0x7f030059; + public static final int top_bar=0x7f03005a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0f0000; + public static final int menu_runopt=0x7f0f0001; + public static final int menu_versionopt=0x7f0f0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0c0008; + public static final int abc_action_bar_home_description_format=0x7f0c0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0c000a; + public static final int abc_action_bar_up_description=0x7f0c000b; + public static final int abc_action_menu_overflow_description=0x7f0c000c; + public static final int abc_action_mode_done=0x7f0c000d; + public static final int abc_activity_chooser_view_see_all=0x7f0c000e; + public static final int abc_activitychooserview_choose_application=0x7f0c000f; + public static final int abc_capital_off=0x7f0c0010; + public static final int abc_capital_on=0x7f0c0011; + public static final int abc_font_family_body_1_material=0x7f0c001d; + public static final int abc_font_family_body_2_material=0x7f0c001e; + public static final int abc_font_family_button_material=0x7f0c001f; + public static final int abc_font_family_caption_material=0x7f0c0020; + public static final int abc_font_family_display_1_material=0x7f0c0021; + public static final int abc_font_family_display_2_material=0x7f0c0022; + public static final int abc_font_family_display_3_material=0x7f0c0023; + public static final int abc_font_family_display_4_material=0x7f0c0024; + public static final int abc_font_family_headline_material=0x7f0c0025; + public static final int abc_font_family_menu_material=0x7f0c0026; + public static final int abc_font_family_subhead_material=0x7f0c0027; + public static final int abc_font_family_title_material=0x7f0c0028; + public static final int abc_search_hint=0x7f0c0012; + public static final int abc_searchview_description_clear=0x7f0c0013; + public static final int abc_searchview_description_query=0x7f0c0014; + public static final int abc_searchview_description_search=0x7f0c0015; + public static final int abc_searchview_description_submit=0x7f0c0016; + public static final int abc_searchview_description_voice=0x7f0c0017; + public static final int abc_shareactionprovider_share_with=0x7f0c0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0c0019; + public static final int abc_toolbar_collapse_description=0x7f0c001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0c002d; + public static final int alerttitle_installmod=0x7f0c0047; + public static final int alerttitle_installoptifine=0x7f0c0048; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0c0046; + /** App name part + */ + public static final int app_name=0x7f0c002b; + public static final int app_short_name=0x7f0c002c; + public static final int appbar_scrolling_view_behavior=0x7f0c0000; + public static final int bottom_sheet_behavior=0x7f0c0001; + public static final int character_counter_pattern=0x7f0c0002; + public static final int control_adebug=0x7f0c0098; + public static final int control_chat=0x7f0c0086; + public static final int control_customkey=0x7f0c0099; + public static final int control_debug=0x7f0c0087; + public static final int control_down=0x7f0c0090; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0c0096; + public static final int control_inventory=0x7f0c008c; + public static final int control_jump=0x7f0c0091; + public static final int control_keyboard=0x7f0c0085; + public static final int control_left=0x7f0c008e; + public static final int control_listplayers=0x7f0c0093; + public static final int control_more3=0x7f0c009a; + public static final int control_more4=0x7f0c009b; + public static final int control_mouseoff=0x7f0c0094; + public static final int control_mouseon=0x7f0c0095; + public static final int control_primary=0x7f0c0089; + public static final int control_right=0x7f0c008f; + public static final int control_secondary=0x7f0c008a; + public static final int control_shift=0x7f0c008b; + public static final int control_thirdperson=0x7f0c0092; + public static final int control_toggle=0x7f0c0084; + public static final int control_up=0x7f0c008d; + public static final int control_viewout=0x7f0c0097; + public static final int control_zoom=0x7f0c0088; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0c0083; + public static final int customctrl_hidden=0x7f0c009d; + public static final int customctrl_keyname=0x7f0c009c; + /** Error messages + */ + public static final int error_checklog=0x7f0c0049; + public static final int error_convert_client=0x7f0c004e; + public static final int error_convert_lib=0x7f0c004d; + public static final int error_load_version=0x7f0c004c; + public static final int error_no_version=0x7f0c004b; + public static final int error_show_less=0x7f0c0050; + public static final int error_show_more=0x7f0c004f; + public static final int error_title=0x7f0c004a; + /** Global strings + */ + public static final int global_add=0x7f0c0077; + public static final int global_edit=0x7f0c0078; + public static final int global_error_field_empty=0x7f0c007d; + public static final int global_load=0x7f0c0079; + public static final int global_name=0x7f0c007a; + public static final int global_remove=0x7f0c007b; + public static final int global_save=0x7f0c007c; + public static final int hint_control_mapping=0x7f0c003e; + /** Hint + */ + public static final int hint_select_account=0x7f0c003d; + /** Languages list part + */ + public static final int language_name=0x7f0c002e; + /** Logging output + */ + public static final int log_title=0x7f0c002f; + public static final int login_error_exist_username=0x7f0c003b; + public static final int login_error_short_username=0x7f0c003a; + public static final int login_offline_alert_skip=0x7f0c0039; + public static final int login_offline_switch=0x7f0c0037; + public static final int login_offline_warning_1=0x7f0c0038; + public static final int login_online_create_account=0x7f0c0036; + public static final int login_online_login_label=0x7f0c0035; + public static final int login_online_password_hint=0x7f0c0032; + public static final int login_online_password_question=0x7f0c0033; + public static final int login_online_remember=0x7f0c0034; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0c0030; + public static final int login_online_username_question=0x7f0c0031; + public static final int login_select_account=0x7f0c003c; + public static final int mcl_launch_cleancache=0x7f0c0058; + public static final int mcl_launch_convert_client=0x7f0c005d; + public static final int mcl_launch_convert_lib=0x7f0c005c; + public static final int mcl_launch_download_assets=0x7f0c005f; + public static final int mcl_launch_download_client=0x7f0c005b; + public static final int mcl_launch_download_lib=0x7f0c005a; + public static final int mcl_launch_downloading=0x7f0c0059; + public static final int mcl_launch_patch_client=0x7f0c005e; + public static final int mcl_option_about=0x7f0c0066; + public static final int mcl_option_checkupdate=0x7f0c0063; + public static final int mcl_option_customcontrol=0x7f0c0064; + public static final int mcl_option_modmgr=0x7f0c0061; + public static final int mcl_option_optifineinstall=0x7f0c0062; + public static final int mcl_option_settings=0x7f0c0065; + public static final int mcl_options=0x7f0c0060; + public static final int mcl_setting_category_general=0x7f0c0070; + public static final int mcl_setting_category_veroption=0x7f0c0071; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0c006f; + public static final int mcl_setting_subtitle_freeform=0x7f0c006a; + public static final int mcl_setting_subtitle_longpresstrigger=0x7f0c006c; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0c0068; + public static final int mcl_setting_title_controlsize=0x7f0c006d; + public static final int mcl_setting_title_forgetoptifpath=0x7f0c006e; + public static final int mcl_setting_title_freeform=0x7f0c0069; + public static final int mcl_setting_title_longpresstrigger=0x7f0c006b; + public static final int mcl_setting_title_setmaxdxref=0x7f0c0067; + public static final int mcl_setting_veroption_oldalpha=0x7f0c0074; + public static final int mcl_setting_veroption_oldbeta=0x7f0c0075; + public static final int mcl_setting_veroption_release=0x7f0c0072; + public static final int mcl_setting_veroption_snapshot=0x7f0c0073; + public static final int mcl_tab_console=0x7f0c0055; + public static final int mcl_tab_crash=0x7f0c0056; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0c0054; + public static final int mcl_version_clone=0x7f0c0076; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0c0057; + public static final int mcn_exit_call=0x7f0c007f; + public static final int mcn_exit_confirm=0x7f0c0082; + public static final int mcn_exit_crash=0x7f0c0080; + public static final int mcn_exit_errcrash=0x7f0c0081; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0c007e; + public static final int password_toggle_content_description=0x7f0c0003; + public static final int path_password_eye=0x7f0c0004; + public static final int path_password_eye_mask_strike_through=0x7f0c0005; + public static final int path_password_eye_mask_visible=0x7f0c0006; + public static final int path_password_strike_through=0x7f0c0007; + public static final int search_menu_title=0x7f0c001b; + public static final int status_bar_notification_info_overflow=0x7f0c001c; + public static final int toast_login_error=0x7f0c0052; + public static final int toast_optifine_success=0x7f0c0053; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0c0051; + /** Update part (unused now) + */ + public static final int update_console=0x7f0c009e; + public static final int v7_preference_off=0x7f0c0029; + public static final int v7_preference_on=0x7f0c002a; + public static final int warning_action_exit=0x7f0c0044; + public static final int warning_action_install=0x7f0c0042; + public static final int warning_action_tryanyway=0x7f0c0043; + public static final int warning_msg=0x7f0c0040; + public static final int warning_noshowagain=0x7f0c0041; + public static final int warning_remove_account=0x7f0c0045; + /** Warning + */ + public static final int warning_title=0x7f0c003f; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800cd; + public static final int AlertDialog_AppCompat_Light=0x7f0800ce; + public static final int AlertTheme=0x7f0801ab; + public static final int Animation_AppCompat_Dialog=0x7f0800cf; + public static final int Animation_AppCompat_DropDownUp=0x7f0800d0; + public static final int Animation_AppCompat_Tooltip=0x7f0800d1; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f0801a9; + public static final int Base_AlertDialog_AppCompat=0x7f0800d2; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800d3; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800d4; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800d5; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800d6; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800d7; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800d8; + public static final int Base_TextAppearance_AppCompat=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080075; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080076; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800d9; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080077; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080079; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f08007a; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Title=0x7f08007b; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800da; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800be; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08007c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08007d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08007e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08007f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080080; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080081; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080082; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800c5; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800bf; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800db; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080083; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080084; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080085; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080086; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080087; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800dc; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080089; + public static final int Base_Theme_AppCompat=0x7f08008a; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800dd; + public static final int Base_Theme_AppCompat_Dialog=0x7f080041; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080042; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800de; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080043; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080031; + public static final int Base_Theme_AppCompat_Light=0x7f08008b; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800df; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080044; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080045; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800e0; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080046; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080032; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800e1; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800e2; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800e3; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800e4; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080047; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080048; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800e5; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080049; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08004a; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f08004b; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080053; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080054; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08008c; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08008d; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08008e; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08008f; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f080090; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800bc; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800bd; + public static final int Base_V23_Theme_AppCompat=0x7f0800c0; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800c1; + public static final int Base_V26_Theme_AppCompat=0x7f0800c9; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800ca; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800cb; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800e6; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800e7; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800e8; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800e9; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800ea; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800eb; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ec; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800ed; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080091; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080092; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080093; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080094; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080095; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800f1; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800f2; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080055; + public static final int Base_Widget_AppCompat_Button=0x7f080096; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080097; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080098; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800f3; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800c2; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080099; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08009a; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800f4; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08009b; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08009c; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800f5; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080030; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800f6; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08009d; + public static final int Base_Widget_AppCompat_EditText=0x7f080056; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08009e; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800f7; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800f8; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800f9; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08009f; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0800a0; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0800a1; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0800a2; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0800a3; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800fa; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0800a4; + public static final int Base_Widget_AppCompat_ListView=0x7f0800a5; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0800a6; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0800a7; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0800a8; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0800a9; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800fb; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08004c; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08004d; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800c3; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800c4; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800fc; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800fd; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0800ab; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800fe; + public static final int Base_Widget_AppCompat_Spinner=0x7f0800ac; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080033; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0800ad; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800cc; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0800ae; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f0801ac; + public static final int MenuDialogAnimation=0x7f0801ad; + public static final int Platform_AppCompat=0x7f08004e; + public static final int Platform_AppCompat_Light=0x7f08004f; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0800af; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0800b0; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0800b1; + public static final int Platform_V11_AppCompat=0x7f080050; + public static final int Platform_V11_AppCompat_Light=0x7f080051; + public static final int Platform_V14_AppCompat=0x7f080058; + public static final int Platform_V14_AppCompat_Light=0x7f080059; + public static final int Platform_V21_AppCompat=0x7f0800b2; + public static final int Platform_V21_AppCompat_Light=0x7f0800b3; + public static final int Platform_V25_AppCompat=0x7f0800c7; + public static final int Platform_V25_AppCompat_Light=0x7f0800c8; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080052; + public static final int Preference=0x7f080192; + public static final int Preference_Category=0x7f080193; + public static final int Preference_Category_Material=0x7f08001f; + public static final int Preference_CheckBoxPreference=0x7f080194; + public static final int Preference_CheckBoxPreference_Material=0x7f080020; + public static final int Preference_DialogPreference=0x7f080195; + public static final int Preference_DialogPreference_EditTextPreference=0x7f080196; + public static final int Preference_DialogPreference_EditTextPreference_Material=0x7f080021; + public static final int Preference_DialogPreference_Material=0x7f080022; + public static final int Preference_DropDown=0x7f080197; + public static final int Preference_DropDown_Material=0x7f080023; + public static final int Preference_Information=0x7f080198; + public static final int Preference_Information_Material=0x7f080024; + public static final int Preference_Material=0x7f080025; + public static final int Preference_PreferenceScreen=0x7f080199; + public static final int Preference_PreferenceScreen_Material=0x7f080026; + public static final int Preference_SeekBarPreference=0x7f08019a; + public static final int Preference_SeekBarPreference_Material=0x7f080027; + public static final int Preference_SwitchPreference=0x7f080028; + public static final int Preference_SwitchPreference_Material=0x7f080029; + public static final int Preference_SwitchPreferenceCompat=0x7f08019b; + public static final int Preference_SwitchPreferenceCompat_Material=0x7f08002a; + public static final int PreferenceFragment=0x7f080190; + public static final int PreferenceFragment_Material=0x7f08002b; + public static final int PreferenceFragmentList=0x7f080191; + public static final int PreferenceFragmentList_Material=0x7f08001e; + public static final int PreferenceThemeOverlay=0x7f08019c; + public static final int PreferenceThemeOverlay_v14=0x7f08002c; + public static final int PreferenceThemeOverlay_v14_Material=0x7f08002d; + public static final int Preference_TextAppearanceMaterialBody2=0x7f08002e; + public static final int Preference_TextAppearanceMaterialSubhead=0x7f08002f; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08005b; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08005c; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08005d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08005e; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08005f; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080060; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080061; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080062; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080063; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080064; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080065; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080066; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080067; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080068; + public static final int RunTheme=0x7f0801aa; + public static final int TextAppearance_AppCompat=0x7f0800ff; + public static final int TextAppearance_AppCompat_Body1=0x7f080100; + public static final int TextAppearance_AppCompat_Body2=0x7f080101; + public static final int TextAppearance_AppCompat_Button=0x7f080102; + public static final int TextAppearance_AppCompat_Caption=0x7f080103; + public static final int TextAppearance_AppCompat_Display1=0x7f080104; + public static final int TextAppearance_AppCompat_Display2=0x7f080105; + public static final int TextAppearance_AppCompat_Display3=0x7f080106; + public static final int TextAppearance_AppCompat_Display4=0x7f080107; + public static final int TextAppearance_AppCompat_Headline=0x7f080108; + public static final int TextAppearance_AppCompat_Inverse=0x7f080109; + public static final int TextAppearance_AppCompat_Large=0x7f08010a; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f08010b; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f08010d; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08010e; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08010f; + public static final int TextAppearance_AppCompat_Medium=0x7f080110; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Menu=0x7f080112; + public static final int TextAppearance_AppCompat_Notification=0x7f0800b4; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800b5; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800b6; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080113; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080114; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800b7; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800b8; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800b9; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800bb; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080115; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080116; + public static final int TextAppearance_AppCompat_Small=0x7f080117; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080118; + public static final int TextAppearance_AppCompat_Subhead=0x7f080119; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f08011a; + public static final int TextAppearance_AppCompat_Title=0x7f08011b; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08011c; + public static final int TextAppearance_AppCompat_Tooltip=0x7f08005a; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08011d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08011e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08011f; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080120; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080121; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080122; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080123; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080124; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080125; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080126; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080127; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080128; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080129; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f08012a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f08012b; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08012c; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08012d; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08012e; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08012f; + public static final int TextAppearance_Compat_Notification=0x7f0801a2; + public static final int TextAppearance_Compat_Notification_Info=0x7f0801a3; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08019d; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0801a8; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0801a1; + public static final int TextAppearance_Compat_Notification_Media=0x7f08019e; + public static final int TextAppearance_Compat_Notification_Time=0x7f0801a4; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f08019f; + public static final int TextAppearance_Compat_Notification_Title=0x7f0801a5; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0801a0; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080130; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080131; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080132; + public static final int Theme_AppCompat=0x7f080133; + public static final int Theme_AppCompat_CompactMenu=0x7f080134; + public static final int Theme_AppCompat_DayNight=0x7f080034; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080035; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080036; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080037; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080038; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080039; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08003a; + public static final int Theme_AppCompat_Dialog=0x7f080135; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080136; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080137; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080138; + public static final int Theme_AppCompat_Light=0x7f080139; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f08013a; + public static final int Theme_AppCompat_Light_Dialog=0x7f08013b; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08013c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08013d; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08013e; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08013f; + public static final int Theme_AppCompat_NoActionBar=0x7f080140; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f080141; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080142; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080143; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080144; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080145; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080146; + public static final int ThemeOverlay_AppCompat_Light=0x7f080147; + public static final int Widget_AppCompat_ActionBar=0x7f080148; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080149; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08014a; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f08014b; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08014c; + public static final int Widget_AppCompat_ActionButton=0x7f08014d; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08014e; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08014f; + public static final int Widget_AppCompat_ActionMode=0x7f080150; + public static final int Widget_AppCompat_ActivityChooserView=0x7f080151; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080152; + public static final int Widget_AppCompat_Button=0x7f080153; + public static final int Widget_AppCompat_Button_Borderless=0x7f080154; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080155; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080156; + public static final int Widget_AppCompat_Button_Colored=0x7f080157; + public static final int Widget_AppCompat_Button_Small=0x7f080158; + public static final int Widget_AppCompat_ButtonBar=0x7f080159; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08015a; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08015b; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08015c; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08015d; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08015e; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_EditText=0x7f080160; + public static final int Widget_AppCompat_ImageButton=0x7f080161; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080162; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080163; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080164; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080165; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080166; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080167; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080168; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080169; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08016a; + public static final int Widget_AppCompat_Light_ActionButton=0x7f08016b; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08016c; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08016d; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08016e; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08016f; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080170; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080171; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080172; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080173; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080174; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080175; + public static final int Widget_AppCompat_Light_SearchView=0x7f080176; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080177; + public static final int Widget_AppCompat_ListMenuView=0x7f080178; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080179; + public static final int Widget_AppCompat_ListView=0x7f08017a; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08017b; + public static final int Widget_AppCompat_ListView_Menu=0x7f08017c; + public static final int Widget_AppCompat_PopupMenu=0x7f08017d; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08017e; + public static final int Widget_AppCompat_PopupWindow=0x7f08017f; + public static final int Widget_AppCompat_ProgressBar=0x7f080180; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080181; + public static final int Widget_AppCompat_RatingBar=0x7f080182; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080183; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080184; + public static final int Widget_AppCompat_SearchView=0x7f080185; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080186; + public static final int Widget_AppCompat_SeekBar=0x7f080187; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080188; + public static final int Widget_AppCompat_Spinner=0x7f080189; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08018a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08018b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08018c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08018d; + public static final int Widget_AppCompat_Toolbar=0x7f08018e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08018f; + public static final int Widget_Compat_NotificationActionContainer=0x7f0801a6; + public static final int Widget_Compat_NotificationActionText=0x7f0801a7; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class xml { + public static final int pref_main=0x7f060000; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010000, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f010003, 0x7f010004 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BackgroundStyle. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BackgroundStyle_android_selectableItemBackground android:selectableItemBackground}
{@link #BackgroundStyle_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
+ @see #BackgroundStyle_android_selectableItemBackground + @see #BackgroundStyle_selectableItemBackground + */ + public static final int[] BackgroundStyle = { + 0x0101030e, 0x7f0100c2 + }; + /** +

This symbol is the offset where the {@link android.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #BackgroundStyle} array. + @attr name android:selectableItemBackground + */ + public static final int BackgroundStyle_android_selectableItemBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #BackgroundStyle} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int BackgroundStyle_selectableItemBackground = 1; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f010005, 0x7f010006, 0x7f010007 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CheckBoxPreference. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #CheckBoxPreference_android_disableDependentsState android:disableDependentsState}
{@link #CheckBoxPreference_android_summaryOff android:summaryOff}
{@link #CheckBoxPreference_android_summaryOn android:summaryOn}
{@link #CheckBoxPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #CheckBoxPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #CheckBoxPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
+ @see #CheckBoxPreference_android_disableDependentsState + @see #CheckBoxPreference_android_summaryOff + @see #CheckBoxPreference_android_summaryOn + @see #CheckBoxPreference_disableDependentsState + @see #CheckBoxPreference_summaryOff + @see #CheckBoxPreference_summaryOn + */ + public static final int[] CheckBoxPreference = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x7f010151, + 0x7f010152, 0x7f010153 + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:disableDependentsState + */ + public static final int CheckBoxPreference_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:summaryOff + */ + public static final int CheckBoxPreference_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #CheckBoxPreference} array. + @attr name android:summaryOn + */ + public static final int CheckBoxPreference_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int CheckBoxPreference_disableDependentsState = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int CheckBoxPreference_summaryOff = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #CheckBoxPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int CheckBoxPreference_summaryOn = 3; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, + 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, + 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, + 0x7f010014, 0x7f010015, 0x7f010016, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010017, 0x7f010018 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010019, 0x7f01001a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f01001b, 0x7f01001c, 0x7f01001d, + 0x7f01001e, 0x7f01001f, 0x7f010020 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f010021, 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DialogPreference. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #DialogPreference_android_dialogIcon android:dialogIcon}
{@link #DialogPreference_android_dialogLayout android:dialogLayout}
{@link #DialogPreference_android_dialogMessage android:dialogMessage}
{@link #DialogPreference_android_dialogTitle android:dialogTitle}
{@link #DialogPreference_android_negativeButtonText android:negativeButtonText}
{@link #DialogPreference_android_positiveButtonText android:positiveButtonText}
{@link #DialogPreference_dialogIcon net.kdt.pojavlaunch:dialogIcon}
{@link #DialogPreference_dialogLayout net.kdt.pojavlaunch:dialogLayout}
{@link #DialogPreference_dialogMessage net.kdt.pojavlaunch:dialogMessage}
{@link #DialogPreference_dialogTitle net.kdt.pojavlaunch:dialogTitle}
{@link #DialogPreference_negativeButtonText net.kdt.pojavlaunch:negativeButtonText}
{@link #DialogPreference_positiveButtonText net.kdt.pojavlaunch:positiveButtonText}
+ @see #DialogPreference_android_dialogIcon + @see #DialogPreference_android_dialogLayout + @see #DialogPreference_android_dialogMessage + @see #DialogPreference_android_dialogTitle + @see #DialogPreference_android_negativeButtonText + @see #DialogPreference_android_positiveButtonText + @see #DialogPreference_dialogIcon + @see #DialogPreference_dialogLayout + @see #DialogPreference_dialogMessage + @see #DialogPreference_dialogTitle + @see #DialogPreference_negativeButtonText + @see #DialogPreference_positiveButtonText + */ + public static final int[] DialogPreference = { + 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, + 0x010101f6, 0x010101f7, 0x7f010154, 0x7f010155, + 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dialogIcon} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogIcon + */ + public static final int DialogPreference_android_dialogIcon = 2; + /** +

This symbol is the offset where the {@link android.R.attr#dialogLayout} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogLayout + */ + public static final int DialogPreference_android_dialogLayout = 5; + /** +

This symbol is the offset where the {@link android.R.attr#dialogMessage} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogMessage + */ + public static final int DialogPreference_android_dialogMessage = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dialogTitle} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:dialogTitle + */ + public static final int DialogPreference_android_dialogTitle = 0; + /** +

This symbol is the offset where the {@link android.R.attr#negativeButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:negativeButtonText + */ + public static final int DialogPreference_android_negativeButtonText = 4; + /** +

This symbol is the offset where the {@link android.R.attr#positiveButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + @attr name android:positiveButtonText + */ + public static final int DialogPreference_android_positiveButtonText = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogIcon} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogIcon + */ + public static final int DialogPreference_dialogIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogLayout} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogLayout + */ + public static final int DialogPreference_dialogLayout = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogMessage} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogMessage + */ + public static final int DialogPreference_dialogMessage = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTitle} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogTitle + */ + public static final int DialogPreference_dialogTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#negativeButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:negativeButtonText + */ + public static final int DialogPreference_negativeButtonText = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#positiveButtonText} + attribute's value can be found in the {@link #DialogPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:positiveButtonText + */ + public static final int DialogPreference_positiveButtonText = 9; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010029 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f01018c, 0x7f01018d, 0x7f01018e, 0x7f01018f, + 0x7f010190, 0x7f010191 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010192, 0x7f010193, 0x7f010194 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a ListPreference. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #ListPreference_android_entries android:entries}
{@link #ListPreference_android_entryValues android:entryValues}
{@link #ListPreference_entries net.kdt.pojavlaunch:entries}
{@link #ListPreference_entryValues net.kdt.pojavlaunch:entryValues}
+ @see #ListPreference_android_entries + @see #ListPreference_android_entryValues + @see #ListPreference_entries + @see #ListPreference_entryValues + */ + public static final int[] ListPreference = { + 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b + }; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #ListPreference} array. + @attr name android:entries + */ + public static final int ListPreference_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#entryValues} + attribute's value can be found in the {@link #ListPreference} array. + @attr name android:entryValues + */ + public static final int ListPreference_android_entryValues = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} + attribute's value can be found in the {@link #ListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entries + */ + public static final int ListPreference_entries = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} + attribute's value can be found in the {@link #ListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entryValues + */ + public static final int ListPreference_entryValues = 3; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a MultiSelectListPreference. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #MultiSelectListPreference_android_entries android:entries}
{@link #MultiSelectListPreference_android_entryValues android:entryValues}
{@link #MultiSelectListPreference_entries net.kdt.pojavlaunch:entries}
{@link #MultiSelectListPreference_entryValues net.kdt.pojavlaunch:entryValues}
+ @see #MultiSelectListPreference_android_entries + @see #MultiSelectListPreference_android_entryValues + @see #MultiSelectListPreference_entries + @see #MultiSelectListPreference_entryValues + */ + public static final int[] MultiSelectListPreference = { + 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b + }; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + @attr name android:entries + */ + public static final int MultiSelectListPreference_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#entryValues} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + @attr name android:entryValues + */ + public static final int MultiSelectListPreference_android_entryValues = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entries + */ + public static final int MultiSelectListPreference_entries = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} + attribute's value can be found in the {@link #MultiSelectListPreference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:entryValues + */ + public static final int MultiSelectListPreference_entryValues = 3; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01002b, + 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, + 0x7f010030, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a Preference. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Preference_allowDividerAbove net.kdt.pojavlaunch:allowDividerAbove}
{@link #Preference_allowDividerBelow net.kdt.pojavlaunch:allowDividerBelow}
{@link #Preference_android_defaultValue android:defaultValue}
{@link #Preference_android_dependency android:dependency}
{@link #Preference_android_enabled android:enabled}
{@link #Preference_android_fragment android:fragment}
{@link #Preference_android_icon android:icon}
{@link #Preference_android_iconSpaceReserved android:iconSpaceReserved}
{@link #Preference_android_key android:key}
{@link #Preference_android_layout android:layout}
{@link #Preference_android_order android:order}
{@link #Preference_android_persistent android:persistent}
{@link #Preference_android_selectable android:selectable}
{@link #Preference_android_shouldDisableView android:shouldDisableView}
{@link #Preference_android_singleLineTitle android:singleLineTitle}
{@link #Preference_android_summary android:summary}
{@link #Preference_android_title android:title}
{@link #Preference_android_widgetLayout android:widgetLayout}
{@link #Preference_defaultValue net.kdt.pojavlaunch:defaultValue}
{@link #Preference_dependency net.kdt.pojavlaunch:dependency}
{@link #Preference_enabled net.kdt.pojavlaunch:enabled}
{@link #Preference_fragment net.kdt.pojavlaunch:fragment}
{@link #Preference_icon net.kdt.pojavlaunch:icon}
{@link #Preference_iconSpaceReserved net.kdt.pojavlaunch:iconSpaceReserved}
{@link #Preference_key net.kdt.pojavlaunch:key}
{@link #Preference_layout net.kdt.pojavlaunch:layout}
{@link #Preference_order net.kdt.pojavlaunch:order}
{@link #Preference_persistent net.kdt.pojavlaunch:persistent}
{@link #Preference_selectable net.kdt.pojavlaunch:selectable}
{@link #Preference_shouldDisableView net.kdt.pojavlaunch:shouldDisableView}
{@link #Preference_singleLineTitle net.kdt.pojavlaunch:singleLineTitle}
{@link #Preference_summary net.kdt.pojavlaunch:summary}
{@link #Preference_title net.kdt.pojavlaunch:title}
{@link #Preference_widgetLayout net.kdt.pojavlaunch:widgetLayout}
+ @see #Preference_allowDividerAbove + @see #Preference_allowDividerBelow + @see #Preference_android_defaultValue + @see #Preference_android_dependency + @see #Preference_android_enabled + @see #Preference_android_fragment + @see #Preference_android_icon + @see #Preference_android_iconSpaceReserved + @see #Preference_android_key + @see #Preference_android_layout + @see #Preference_android_order + @see #Preference_android_persistent + @see #Preference_android_selectable + @see #Preference_android_shouldDisableView + @see #Preference_android_singleLineTitle + @see #Preference_android_summary + @see #Preference_android_title + @see #Preference_android_widgetLayout + @see #Preference_defaultValue + @see #Preference_dependency + @see #Preference_enabled + @see #Preference_fragment + @see #Preference_icon + @see #Preference_iconSpaceReserved + @see #Preference_key + @see #Preference_layout + @see #Preference_order + @see #Preference_persistent + @see #Preference_selectable + @see #Preference_shouldDisableView + @see #Preference_singleLineTitle + @see #Preference_summary + @see #Preference_title + @see #Preference_widgetLayout + */ + public static final int[] Preference = { + 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, + 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, + 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, + 0x010101ee, 0x010102e3, 0x0101055c, 0x01010561, + 0x7f01005e, 0x7f010064, 0x7f010123, 0x7f01015c, + 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, + 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, + 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, + 0x7f010169, 0x7f01016a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAbove} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAbove + */ + public static final int Preference_allowDividerAbove = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerBelow} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerBelow + */ + public static final int Preference_allowDividerBelow = 31; + /** +

This symbol is the offset where the {@link android.R.attr#defaultValue} + attribute's value can be found in the {@link #Preference} array. + @attr name android:defaultValue + */ + public static final int Preference_android_defaultValue = 11; + /** +

This symbol is the offset where the {@link android.R.attr#dependency} + attribute's value can be found in the {@link #Preference} array. + @attr name android:dependency + */ + public static final int Preference_android_dependency = 10; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #Preference} array. + @attr name android:enabled + */ + public static final int Preference_android_enabled = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fragment} + attribute's value can be found in the {@link #Preference} array. + @attr name android:fragment + */ + public static final int Preference_android_fragment = 13; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #Preference} array. + @attr name android:icon + */ + public static final int Preference_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#iconSpaceReserved} + attribute's value can be found in the {@link #Preference} array. + @attr name android:iconSpaceReserved + */ + public static final int Preference_android_iconSpaceReserved = 15; + /** +

This symbol is the offset where the {@link android.R.attr#key} + attribute's value can be found in the {@link #Preference} array. + @attr name android:key + */ + public static final int Preference_android_key = 6; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #Preference} array. + @attr name android:layout + */ + public static final int Preference_android_layout = 3; + /** +

This symbol is the offset where the {@link android.R.attr#order} + attribute's value can be found in the {@link #Preference} array. + @attr name android:order + */ + public static final int Preference_android_order = 8; + /** +

This symbol is the offset where the {@link android.R.attr#persistent} + attribute's value can be found in the {@link #Preference} array. + @attr name android:persistent + */ + public static final int Preference_android_persistent = 1; + /** +

This symbol is the offset where the {@link android.R.attr#selectable} + attribute's value can be found in the {@link #Preference} array. + @attr name android:selectable + */ + public static final int Preference_android_selectable = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shouldDisableView} + attribute's value can be found in the {@link #Preference} array. + @attr name android:shouldDisableView + */ + public static final int Preference_android_shouldDisableView = 12; + /** +

This symbol is the offset where the {@link android.R.attr#singleLineTitle} + attribute's value can be found in the {@link #Preference} array. + @attr name android:singleLineTitle + */ + public static final int Preference_android_singleLineTitle = 14; + /** +

This symbol is the offset where the {@link android.R.attr#summary} + attribute's value can be found in the {@link #Preference} array. + @attr name android:summary + */ + public static final int Preference_android_summary = 7; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #Preference} array. + @attr name android:title + */ + public static final int Preference_android_title = 4; + /** +

This symbol is the offset where the {@link android.R.attr#widgetLayout} + attribute's value can be found in the {@link #Preference} array. + @attr name android:widgetLayout + */ + public static final int Preference_android_widgetLayout = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultValue} + attribute's value can be found in the {@link #Preference} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". + @attr name net.kdt.pojavlaunch:defaultValue + */ + public static final int Preference_defaultValue = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dependency} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dependency + */ + public static final int Preference_dependency = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#enabled} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:enabled + */ + public static final int Preference_enabled = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fragment} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fragment + */ + public static final int Preference_fragment = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int Preference_icon = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconSpaceReserved} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconSpaceReserved + */ + public static final int Preference_iconSpaceReserved = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#key} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:key + */ + public static final int Preference_key = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int Preference_layout = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#order} + attribute's value can be found in the {@link #Preference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:order + */ + public static final int Preference_order = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#persistent} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:persistent + */ + public static final int Preference_persistent = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectable} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:selectable + */ + public static final int Preference_selectable = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#shouldDisableView} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:shouldDisableView + */ + public static final int Preference_shouldDisableView = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleLineTitle} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:singleLineTitle + */ + public static final int Preference_singleLineTitle = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summary} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summary + */ + public static final int Preference_summary = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Preference_title = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#widgetLayout} + attribute's value can be found in the {@link #Preference} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:widgetLayout + */ + public static final int Preference_widgetLayout = 23; + /** Attributes that can be used with a PreferenceFragment. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceFragment_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragment_android_divider android:divider}
{@link #PreferenceFragment_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragment_android_layout android:layout}
+ @see #PreferenceFragment_allowDividerAfterLastItem + @see #PreferenceFragment_android_divider + @see #PreferenceFragment_android_dividerHeight + @see #PreferenceFragment_android_layout + */ + public static final int[] PreferenceFragment = { + 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} + attribute's value can be found in the {@link #PreferenceFragment} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem + */ + public static final int PreferenceFragment_allowDividerAfterLastItem = 3; + /** +

This symbol is the offset where the {@link android.R.attr#divider} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:divider + */ + public static final int PreferenceFragment_android_divider = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dividerHeight} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:dividerHeight + */ + public static final int PreferenceFragment_android_dividerHeight = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #PreferenceFragment} array. + @attr name android:layout + */ + public static final int PreferenceFragment_android_layout = 0; + /** Attributes that can be used with a PreferenceFragmentCompat. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceFragmentCompat_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragmentCompat_android_divider android:divider}
{@link #PreferenceFragmentCompat_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragmentCompat_android_layout android:layout}
+ @see #PreferenceFragmentCompat_allowDividerAfterLastItem + @see #PreferenceFragmentCompat_android_divider + @see #PreferenceFragmentCompat_android_dividerHeight + @see #PreferenceFragmentCompat_android_layout + */ + public static final int[] PreferenceFragmentCompat = { + 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem + */ + public static final int PreferenceFragmentCompat_allowDividerAfterLastItem = 3; + /** +

This symbol is the offset where the {@link android.R.attr#divider} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:divider + */ + public static final int PreferenceFragmentCompat_android_divider = 1; + /** +

This symbol is the offset where the {@link android.R.attr#dividerHeight} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:dividerHeight + */ + public static final int PreferenceFragmentCompat_android_dividerHeight = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #PreferenceFragmentCompat} array. + @attr name android:layout + */ + public static final int PreferenceFragmentCompat_android_layout = 0; + /** Attributes that can be used with a PreferenceGroup. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PreferenceGroup_android_orderingFromXml android:orderingFromXml}
{@link #PreferenceGroup_orderingFromXml net.kdt.pojavlaunch:orderingFromXml}
+ @see #PreferenceGroup_android_orderingFromXml + @see #PreferenceGroup_orderingFromXml + */ + public static final int[] PreferenceGroup = { + 0x010101e7, 0x7f01016c + }; + /** +

This symbol is the offset where the {@link android.R.attr#orderingFromXml} + attribute's value can be found in the {@link #PreferenceGroup} array. + @attr name android:orderingFromXml + */ + public static final int PreferenceGroup_android_orderingFromXml = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#orderingFromXml} + attribute's value can be found in the {@link #PreferenceGroup} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:orderingFromXml + */ + public static final int PreferenceGroup_orderingFromXml = 1; + /** Attributes that can be used with a PreferenceImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceImageView_android_maxHeight android:maxHeight}
{@link #PreferenceImageView_android_maxWidth android:maxWidth}
{@link #PreferenceImageView_maxHeight net.kdt.pojavlaunch:maxHeight}
{@link #PreferenceImageView_maxWidth net.kdt.pojavlaunch:maxWidth}
+ @see #PreferenceImageView_android_maxHeight + @see #PreferenceImageView_android_maxWidth + @see #PreferenceImageView_maxHeight + @see #PreferenceImageView_maxWidth + */ + public static final int[] PreferenceImageView = { + 0x0101011f, 0x01010120, 0x7f01016d, 0x7f01016e + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxHeight} + attribute's value can be found in the {@link #PreferenceImageView} array. + @attr name android:maxHeight + */ + public static final int PreferenceImageView_android_maxHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #PreferenceImageView} array. + @attr name android:maxWidth + */ + public static final int PreferenceImageView_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxHeight} + attribute's value can be found in the {@link #PreferenceImageView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxHeight + */ + public static final int PreferenceImageView_maxHeight = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxWidth} + attribute's value can be found in the {@link #PreferenceImageView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxWidth + */ + public static final int PreferenceImageView_maxWidth = 2; + /** Attributes that can be used with a PreferenceTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #PreferenceTheme_checkBoxPreferenceStyle net.kdt.pojavlaunch:checkBoxPreferenceStyle}
{@link #PreferenceTheme_dialogPreferenceStyle net.kdt.pojavlaunch:dialogPreferenceStyle}
{@link #PreferenceTheme_dropdownPreferenceStyle net.kdt.pojavlaunch:dropdownPreferenceStyle}
{@link #PreferenceTheme_editTextPreferenceStyle net.kdt.pojavlaunch:editTextPreferenceStyle}
{@link #PreferenceTheme_preferenceActivityStyle net.kdt.pojavlaunch:preferenceActivityStyle}
{@link #PreferenceTheme_preferenceCategoryStyle net.kdt.pojavlaunch:preferenceCategoryStyle}
{@link #PreferenceTheme_preferenceFragmentCompatStyle net.kdt.pojavlaunch:preferenceFragmentCompatStyle}
{@link #PreferenceTheme_preferenceFragmentListStyle net.kdt.pojavlaunch:preferenceFragmentListStyle}
{@link #PreferenceTheme_preferenceFragmentPaddingSide net.kdt.pojavlaunch:preferenceFragmentPaddingSide}
{@link #PreferenceTheme_preferenceFragmentStyle net.kdt.pojavlaunch:preferenceFragmentStyle}
{@link #PreferenceTheme_preferenceHeaderPanelStyle net.kdt.pojavlaunch:preferenceHeaderPanelStyle}
{@link #PreferenceTheme_preferenceInformationStyle net.kdt.pojavlaunch:preferenceInformationStyle}
{@link #PreferenceTheme_preferenceLayoutChild net.kdt.pojavlaunch:preferenceLayoutChild}
{@link #PreferenceTheme_preferenceListStyle net.kdt.pojavlaunch:preferenceListStyle}
{@link #PreferenceTheme_preferencePanelStyle net.kdt.pojavlaunch:preferencePanelStyle}
{@link #PreferenceTheme_preferenceScreenStyle net.kdt.pojavlaunch:preferenceScreenStyle}
{@link #PreferenceTheme_preferenceStyle net.kdt.pojavlaunch:preferenceStyle}
{@link #PreferenceTheme_preferenceTheme net.kdt.pojavlaunch:preferenceTheme}
{@link #PreferenceTheme_ringtonePreferenceStyle net.kdt.pojavlaunch:ringtonePreferenceStyle}
{@link #PreferenceTheme_seekBarPreferenceStyle net.kdt.pojavlaunch:seekBarPreferenceStyle}
{@link #PreferenceTheme_switchPreferenceCompatStyle net.kdt.pojavlaunch:switchPreferenceCompatStyle}
{@link #PreferenceTheme_switchPreferenceStyle net.kdt.pojavlaunch:switchPreferenceStyle}
{@link #PreferenceTheme_yesNoPreferenceStyle net.kdt.pojavlaunch:yesNoPreferenceStyle}
+ @see #PreferenceTheme_checkBoxPreferenceStyle + @see #PreferenceTheme_dialogPreferenceStyle + @see #PreferenceTheme_dropdownPreferenceStyle + @see #PreferenceTheme_editTextPreferenceStyle + @see #PreferenceTheme_preferenceActivityStyle + @see #PreferenceTheme_preferenceCategoryStyle + @see #PreferenceTheme_preferenceFragmentCompatStyle + @see #PreferenceTheme_preferenceFragmentListStyle + @see #PreferenceTheme_preferenceFragmentPaddingSide + @see #PreferenceTheme_preferenceFragmentStyle + @see #PreferenceTheme_preferenceHeaderPanelStyle + @see #PreferenceTheme_preferenceInformationStyle + @see #PreferenceTheme_preferenceLayoutChild + @see #PreferenceTheme_preferenceListStyle + @see #PreferenceTheme_preferencePanelStyle + @see #PreferenceTheme_preferenceScreenStyle + @see #PreferenceTheme_preferenceStyle + @see #PreferenceTheme_preferenceTheme + @see #PreferenceTheme_ringtonePreferenceStyle + @see #PreferenceTheme_seekBarPreferenceStyle + @see #PreferenceTheme_switchPreferenceCompatStyle + @see #PreferenceTheme_switchPreferenceStyle + @see #PreferenceTheme_yesNoPreferenceStyle + */ + public static final int[] PreferenceTheme = { + 0x7f01016f, 0x7f010170, 0x7f010171, 0x7f010172, + 0x7f010173, 0x7f010174, 0x7f010175, 0x7f010176, + 0x7f010177, 0x7f010178, 0x7f010179, 0x7f01017a, + 0x7f01017b, 0x7f01017c, 0x7f01017d, 0x7f01017e, + 0x7f01017f, 0x7f010180, 0x7f010181, 0x7f010182, + 0x7f010183, 0x7f010184, 0x7f010185 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkBoxPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkBoxPreferenceStyle + */ + public static final int PreferenceTheme_checkBoxPreferenceStyle = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogPreferenceStyle + */ + public static final int PreferenceTheme_dialogPreferenceStyle = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropdownPreferenceStyle + */ + public static final int PreferenceTheme_dropdownPreferenceStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextPreferenceStyle + */ + public static final int PreferenceTheme_editTextPreferenceStyle = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceActivityStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceActivityStyle + */ + public static final int PreferenceTheme_preferenceActivityStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceCategoryStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceCategoryStyle + */ + public static final int PreferenceTheme_preferenceCategoryStyle = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentCompatStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentCompatStyle + */ + public static final int PreferenceTheme_preferenceFragmentCompatStyle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentListStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentListStyle + */ + public static final int PreferenceTheme_preferenceFragmentListStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentPaddingSide} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preferenceFragmentPaddingSide + */ + public static final int PreferenceTheme_preferenceFragmentPaddingSide = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceFragmentStyle + */ + public static final int PreferenceTheme_preferenceFragmentStyle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceHeaderPanelStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceHeaderPanelStyle + */ + public static final int PreferenceTheme_preferenceHeaderPanelStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceInformationStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceInformationStyle + */ + public static final int PreferenceTheme_preferenceInformationStyle = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceLayoutChild} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceLayoutChild + */ + public static final int PreferenceTheme_preferenceLayoutChild = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceListStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceListStyle + */ + public static final int PreferenceTheme_preferenceListStyle = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferencePanelStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferencePanelStyle + */ + public static final int PreferenceTheme_preferencePanelStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceScreenStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceScreenStyle + */ + public static final int PreferenceTheme_preferenceScreenStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceStyle + */ + public static final int PreferenceTheme_preferenceStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceTheme} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:preferenceTheme + */ + public static final int PreferenceTheme_preferenceTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ringtonePreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ringtonePreferenceStyle + */ + public static final int PreferenceTheme_ringtonePreferenceStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarPreferenceStyle + */ + public static final int PreferenceTheme_seekBarPreferenceStyle = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceCompatStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchPreferenceCompatStyle + */ + public static final int PreferenceTheme_switchPreferenceCompatStyle = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchPreferenceStyle + */ + public static final int PreferenceTheme_switchPreferenceStyle = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#yesNoPreferenceStyle} + attribute's value can be found in the {@link #PreferenceTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:yesNoPreferenceStyle + */ + public static final int PreferenceTheme_yesNoPreferenceStyle = 9; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010052, 0x7f010053, + 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, + 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010031 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SeekBarPreference. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #SeekBarPreference_adjustable net.kdt.pojavlaunch:adjustable}
{@link #SeekBarPreference_android_layout android:layout}
{@link #SeekBarPreference_android_max android:max}
{@link #SeekBarPreference_min net.kdt.pojavlaunch:min}
{@link #SeekBarPreference_seekBarIncrement net.kdt.pojavlaunch:seekBarIncrement}
{@link #SeekBarPreference_showSeekBarValue net.kdt.pojavlaunch:showSeekBarValue}
+ @see #SeekBarPreference_adjustable + @see #SeekBarPreference_android_layout + @see #SeekBarPreference_android_max + @see #SeekBarPreference_min + @see #SeekBarPreference_seekBarIncrement + @see #SeekBarPreference_showSeekBarValue + */ + public static final int[] SeekBarPreference = { + 0x010100f2, 0x01010136, 0x7f010186, 0x7f010187, + 0x7f010188, 0x7f010189 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#adjustable} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:adjustable + */ + public static final int SeekBarPreference_adjustable = 4; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #SeekBarPreference} array. + @attr name android:layout + */ + public static final int SeekBarPreference_android_layout = 0; + /** +

This symbol is the offset where the {@link android.R.attr#max} + attribute's value can be found in the {@link #SeekBarPreference} array. + @attr name android:max + */ + public static final int SeekBarPreference_android_max = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#min} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:min + */ + public static final int SeekBarPreference_min = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarIncrement} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:seekBarIncrement + */ + public static final int SeekBarPreference_seekBarIncrement = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showSeekBarValue} + attribute's value can be found in the {@link #SeekBarPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showSeekBarValue + */ + public static final int SeekBarPreference_showSeekBarValue = 5; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010033, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a SwitchPreference. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchPreference_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreference_android_summaryOff android:summaryOff}
{@link #SwitchPreference_android_summaryOn android:summaryOn}
{@link #SwitchPreference_android_switchTextOff android:switchTextOff}
{@link #SwitchPreference_android_switchTextOn android:switchTextOn}
{@link #SwitchPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreference_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreference_switchTextOn net.kdt.pojavlaunch:switchTextOn}
+ @see #SwitchPreference_android_disableDependentsState + @see #SwitchPreference_android_summaryOff + @see #SwitchPreference_android_summaryOn + @see #SwitchPreference_android_switchTextOff + @see #SwitchPreference_android_switchTextOn + @see #SwitchPreference_disableDependentsState + @see #SwitchPreference_summaryOff + @see #SwitchPreference_summaryOn + @see #SwitchPreference_switchTextOff + @see #SwitchPreference_switchTextOn + */ + public static final int[] SwitchPreference = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, + 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, + 0x7f01018a, 0x7f01018b + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:disableDependentsState + */ + public static final int SwitchPreference_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:summaryOff + */ + public static final int SwitchPreference_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:summaryOn + */ + public static final int SwitchPreference_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:switchTextOff + */ + public static final int SwitchPreference_android_switchTextOff = 4; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreference} array. + @attr name android:switchTextOn + */ + public static final int SwitchPreference_android_switchTextOn = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int SwitchPreference_disableDependentsState = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int SwitchPreference_summaryOff = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int SwitchPreference_summaryOn = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOff + */ + public static final int SwitchPreference_switchTextOff = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreference} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOn + */ + public static final int SwitchPreference_switchTextOn = 8; + /** Attributes that can be used with a SwitchPreferenceCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchPreferenceCompat_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreferenceCompat_android_summaryOff android:summaryOff}
{@link #SwitchPreferenceCompat_android_summaryOn android:summaryOn}
{@link #SwitchPreferenceCompat_android_switchTextOff android:switchTextOff}
{@link #SwitchPreferenceCompat_android_switchTextOn android:switchTextOn}
{@link #SwitchPreferenceCompat_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreferenceCompat_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreferenceCompat_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreferenceCompat_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreferenceCompat_switchTextOn net.kdt.pojavlaunch:switchTextOn}
+ @see #SwitchPreferenceCompat_android_disableDependentsState + @see #SwitchPreferenceCompat_android_summaryOff + @see #SwitchPreferenceCompat_android_summaryOn + @see #SwitchPreferenceCompat_android_switchTextOff + @see #SwitchPreferenceCompat_android_switchTextOn + @see #SwitchPreferenceCompat_disableDependentsState + @see #SwitchPreferenceCompat_summaryOff + @see #SwitchPreferenceCompat_summaryOn + @see #SwitchPreferenceCompat_switchTextOff + @see #SwitchPreferenceCompat_switchTextOn + */ + public static final int[] SwitchPreferenceCompat = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, + 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, + 0x7f01018a, 0x7f01018b + }; + /** +

This symbol is the offset where the {@link android.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:disableDependentsState + */ + public static final int SwitchPreferenceCompat_android_disableDependentsState = 2; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:summaryOff + */ + public static final int SwitchPreferenceCompat_android_summaryOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:summaryOn + */ + public static final int SwitchPreferenceCompat_android_summaryOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:switchTextOff + */ + public static final int SwitchPreferenceCompat_android_switchTextOff = 4; + /** +

This symbol is the offset where the {@link android.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + @attr name android:switchTextOn + */ + public static final int SwitchPreferenceCompat_android_switchTextOn = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:disableDependentsState + */ + public static final int SwitchPreferenceCompat_disableDependentsState = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOff + */ + public static final int SwitchPreferenceCompat_summaryOff = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:summaryOn + */ + public static final int SwitchPreferenceCompat_summaryOn = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOff + */ + public static final int SwitchPreferenceCompat_switchTextOff = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} + attribute's value can be found in the {@link #SwitchPreferenceCompat} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchTextOn + */ + public static final int SwitchPreferenceCompat_switchTextOn = 8; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f010044, 0x7f010045, + 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/android/support/v7/recyclerview/R.java b/app/build/gen/android/support/v7/recyclerview/R.java new file mode 100644 index 000000000..4cc32b9f7 --- /dev/null +++ b/app/build/gen/android/support/v7/recyclerview/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.recyclerview; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/app/build/gen/net/kdt/pojavlaunch/BuildConfig.java b/app/build/gen/net/kdt/pojavlaunch/BuildConfig.java new file mode 100644 index 000000000..bb43d4f6d --- /dev/null +++ b/app/build/gen/net/kdt/pojavlaunch/BuildConfig.java @@ -0,0 +1,6 @@ +/** Automatically generated file. DO NOT MODIFY */ +package net.kdt.pojavlaunch; + +public final class BuildConfig { + public final static boolean DEBUG = true; +} \ No newline at end of file diff --git a/app/build/gen/net/kdt/pojavlaunch/R.java b/app/build/gen/net/kdt/pojavlaunch/R.java new file mode 100644 index 000000000..91a0adb7f --- /dev/null +++ b/app/build/gen/net/kdt/pojavlaunch/R.java @@ -0,0 +1,11250 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package net.kdt.pojavlaunch; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_snackbar_in=0x7f04000c; + public static final int design_snackbar_out=0x7f04000d; + public static final int tooltip_enter=0x7f04000e; + public static final int tooltip_exit=0x7f04000f; + public static final int translate_left_side=0x7f040010; + public static final int translate_right_side=0x7f040011; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f050000; + } + public static final class array { + public static final int mcl_options=0x7f0d0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f0100a4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f0100a5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01009e; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100a3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f01009f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f0100a1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f0100bb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f0100a6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f0100ac; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01009d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010118; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010117; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100ec; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100ed; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100eb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ee; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f010104; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x7f010105; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int alphabeticModifiers=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01010d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMaxTextSize=0x7f01008d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeMinTextSize=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoSizePresetSizes=0x7f01008b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoSizeStepGranularity=0x7f01008a; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ */ + public static final int autoSizeTextType=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010069; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010068; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f01014f; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010150; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f01010e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_autoHide=0x7f010032; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f01000f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ */ + public static final int behavior_peekHeight=0x7f01000e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_skipCollapsed=0x7f010010; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f0100c4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f0100c1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100f2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f0100c0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ */ + public static final int buttonGravity=0x7f010144; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010106; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010107; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100f7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010127; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f010079; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f010146; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f010145; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f010017; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f010108; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100e3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x7f0100ea; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100e7; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100e5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100e6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100e4; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int colorError=0x7f010103; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f0100e1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100e2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100e8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f01012c; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010072; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEndWithActions=0x7f010076; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010073; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010074; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010071; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStartWithNavigation=0x7f010075; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100e9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010051; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01006a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f010126; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f0100b8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010112; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f0100c5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01010a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f0100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f0100cc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100f8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010077; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01007b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f010009; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f01001e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f010011; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f010015; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f010014; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f010012; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f010016; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ */ + public static final int fabSize=0x7f01002e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x7f010004; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f010007; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f010005; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f010006; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int font=0x7f010158; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x7f01008e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderAuthority=0x7f010151; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fontProviderCerts=0x7f010154; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ */ + public static final int fontProviderFetchStrategy=0x7f010155; + /**

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ */ + public static final int fontProviderFetchTimeout=0x7f010156; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderPackage=0x7f010152; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontProviderQuery=0x7f010153; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ */ + public static final int fontStyle=0x7f010157; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontWeight=0x7f010159; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010033; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010128; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f01005c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010055; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010064; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconTint=0x7f01011b; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int iconTintMode=0x7f01011c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f010124; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f01006d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01007a; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f01003a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010037; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010035; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010038; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f010123; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f010025; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f010027; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f010024; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010020; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f010021; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ */ + public static final int layout_dodgeInsetEdges=0x7f010029; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ */ + public static final int layout_insetEdge=0x7f010028; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f010026; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f01000c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f01000d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f0100e0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listMenuViewStyle=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f0100d9; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f0100d3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f0100d5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f0100d4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f0100d6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010065; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f010149; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01003c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f010143; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010110; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f01007e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f010148; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f010147; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01005f; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ */ + public static final int numericModifiers=0x7f010114; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01011f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottomNoButtons=0x7f010121; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f01014d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f01014c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTopNoTitle=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f0100dd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f0100de; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleContentDescription=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int passwordToggleDrawable=0x7f010057; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleEnabled=0x7f010056; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int passwordToggleTint=0x7f010059; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int passwordToggleTintMode=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f010078; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f0100cb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f01011d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f01002f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f01012e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f010125; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100f9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f0100fc; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f01002d; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimAnimationDuration=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrimVisibleHeightTrigger=0x7f01001b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f01012a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010129; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f0100d2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f0100c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0100c3; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010115; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010111; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01013a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showTitle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f01007f; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f010109; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f010139; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010082; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f010120; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsed=0x7f01000a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_collapsible=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f010023; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subMenuArrow=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f01012f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f01013c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f01014b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f01012d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f010137; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f010138; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100ff; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f010136; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f010040; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01003f; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010042; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01003d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01003e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010044; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010043; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01004b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f01004a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010048; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010049; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010045; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010046; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0100b5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f0100dc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0100cf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0100b6; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ef; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorError=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0100d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f01014e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f010135; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x7f010130; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int thumbTintMode=0x7f010131; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tickMark=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tickMarkTint=0x7f010086; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int tickMarkTintMode=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x7f010083; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int tintMode=0x7f010084; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f01005e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f01001f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargin=0x7f01013d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f010141; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f01013f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f01013e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f010140; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f010142; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f01013b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f01014a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f0100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f010102; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tooltipFrameBackground=0x7f010101; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tooltipText=0x7f01011a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010132; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x7f010133; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ */ + public static final int trackTintMode=0x7f010134; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010031; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f01012b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010092; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010096; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010094; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010093; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010095; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010097; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010098; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010090; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0c0000; + public static final int abc_allow_stacked_button_bar=0x7f0c0001; + public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0047; + public static final int abc_background_cache_hint_selector_material_light=0x7f0a0048; + public static final int abc_btn_colored_borderless_text_material=0x7f0a0049; + public static final int abc_btn_colored_text_material=0x7f0a004a; + public static final int abc_color_highlight_material=0x7f0a004b; + public static final int abc_hint_foreground_material_dark=0x7f0a004c; + public static final int abc_hint_foreground_material_light=0x7f0a004d; + public static final int abc_input_method_navigation_guard=0x7f0a0009; + public static final int abc_primary_text_disable_only_material_dark=0x7f0a004e; + public static final int abc_primary_text_disable_only_material_light=0x7f0a004f; + public static final int abc_primary_text_material_dark=0x7f0a0050; + public static final int abc_primary_text_material_light=0x7f0a0051; + public static final int abc_search_url_text=0x7f0a0052; + public static final int abc_search_url_text_normal=0x7f0a000a; + public static final int abc_search_url_text_pressed=0x7f0a000b; + public static final int abc_search_url_text_selected=0x7f0a000c; + public static final int abc_secondary_text_material_dark=0x7f0a0053; + public static final int abc_secondary_text_material_light=0x7f0a0054; + public static final int abc_tint_btn_checkable=0x7f0a0055; + public static final int abc_tint_default=0x7f0a0056; + public static final int abc_tint_edittext=0x7f0a0057; + public static final int abc_tint_seek_thumb=0x7f0a0058; + public static final int abc_tint_spinner=0x7f0a0059; + public static final int abc_tint_switch_track=0x7f0a005a; + public static final int accent_material_dark=0x7f0a000d; + public static final int accent_material_light=0x7f0a000e; + public static final int background_floating_material_dark=0x7f0a000f; + public static final int background_floating_material_light=0x7f0a0010; + public static final int background_material_dark=0x7f0a0011; + public static final int background_material_light=0x7f0a0012; + public static final int bright_foreground_disabled_material_dark=0x7f0a0013; + public static final int bright_foreground_disabled_material_light=0x7f0a0014; + public static final int bright_foreground_inverse_material_dark=0x7f0a0015; + public static final int bright_foreground_inverse_material_light=0x7f0a0016; + public static final int bright_foreground_material_dark=0x7f0a0017; + public static final int bright_foreground_material_light=0x7f0a0018; + public static final int button_material_dark=0x7f0a0019; + public static final int button_material_light=0x7f0a001a; + public static final int design_bottom_navigation_shadow_color=0x7f0a0000; + public static final int design_error=0x7f0a005b; + public static final int design_fab_shadow_end_color=0x7f0a0001; + public static final int design_fab_shadow_mid_color=0x7f0a0002; + public static final int design_fab_shadow_start_color=0x7f0a0003; + public static final int design_fab_stroke_end_inner_color=0x7f0a0004; + public static final int design_fab_stroke_end_outer_color=0x7f0a0005; + public static final int design_fab_stroke_top_inner_color=0x7f0a0006; + public static final int design_fab_stroke_top_outer_color=0x7f0a0007; + public static final int design_snackbar_background_color=0x7f0a0008; + public static final int design_tint_password_toggle=0x7f0a005c; + public static final int dim_foreground_disabled_material_dark=0x7f0a001b; + public static final int dim_foreground_disabled_material_light=0x7f0a001c; + public static final int dim_foreground_material_dark=0x7f0a001d; + public static final int dim_foreground_material_light=0x7f0a001e; + public static final int error_color_material=0x7f0a001f; + public static final int foreground_material_dark=0x7f0a0020; + public static final int foreground_material_light=0x7f0a0021; + public static final int highlighted_text_material_dark=0x7f0a0022; + public static final int highlighted_text_material_light=0x7f0a0023; + public static final int material_blue_grey_800=0x7f0a0024; + public static final int material_blue_grey_900=0x7f0a0025; + public static final int material_blue_grey_950=0x7f0a0026; + public static final int material_deep_teal_200=0x7f0a0027; + public static final int material_deep_teal_500=0x7f0a0028; + public static final int material_grey_100=0x7f0a0029; + public static final int material_grey_300=0x7f0a002a; + public static final int material_grey_50=0x7f0a002b; + public static final int material_grey_600=0x7f0a002c; + public static final int material_grey_800=0x7f0a002d; + public static final int material_grey_850=0x7f0a002e; + public static final int material_grey_900=0x7f0a002f; + public static final int notification_action_color_filter=0x7f0a0045; + public static final int notification_icon_bg_color=0x7f0a0046; + public static final int notification_material_background_media_default_color=0x7f0a0044; + public static final int primary_dark_material_dark=0x7f0a0030; + public static final int primary_dark_material_light=0x7f0a0031; + public static final int primary_material_dark=0x7f0a0032; + public static final int primary_material_light=0x7f0a0033; + public static final int primary_text_default_material_dark=0x7f0a0034; + public static final int primary_text_default_material_light=0x7f0a0035; + public static final int primary_text_disabled_material_dark=0x7f0a0036; + public static final int primary_text_disabled_material_light=0x7f0a0037; + public static final int ripple_material_dark=0x7f0a0038; + public static final int ripple_material_light=0x7f0a0039; + public static final int secondary_text_default_material_dark=0x7f0a003a; + public static final int secondary_text_default_material_light=0x7f0a003b; + public static final int secondary_text_disabled_material_dark=0x7f0a003c; + public static final int secondary_text_disabled_material_light=0x7f0a003d; + public static final int switch_thumb_disabled_material_dark=0x7f0a003e; + public static final int switch_thumb_disabled_material_light=0x7f0a003f; + public static final int switch_thumb_material_dark=0x7f0a005d; + public static final int switch_thumb_material_light=0x7f0a005e; + public static final int switch_thumb_normal_material_dark=0x7f0a0040; + public static final int switch_thumb_normal_material_light=0x7f0a0041; + public static final int tooltip_background_dark=0x7f0a0042; + public static final int tooltip_background_light=0x7f0a0043; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f070038; + public static final int abc_action_bar_content_inset_with_nav=0x7f070039; + public static final int abc_action_bar_default_height_material=0x7f07002d; + public static final int abc_action_bar_default_padding_end_material=0x7f07003a; + public static final int abc_action_bar_default_padding_start_material=0x7f07003b; + public static final int abc_action_bar_elevation_material=0x7f07003d; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f07003e; + public static final int abc_action_bar_overflow_padding_end_material=0x7f07003f; + public static final int abc_action_bar_overflow_padding_start_material=0x7f070040; + public static final int abc_action_bar_progress_bar_size=0x7f07002e; + public static final int abc_action_bar_stacked_max_height=0x7f070041; + public static final int abc_action_bar_stacked_tab_max_width=0x7f070042; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070043; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f070044; + public static final int abc_action_button_min_height_material=0x7f070045; + public static final int abc_action_button_min_width_material=0x7f070046; + public static final int abc_action_button_min_width_overflow_material=0x7f070047; + public static final int abc_alert_dialog_button_bar_height=0x7f07002c; + public static final int abc_button_inset_horizontal_material=0x7f070048; + public static final int abc_button_inset_vertical_material=0x7f070049; + public static final int abc_button_padding_horizontal_material=0x7f07004a; + public static final int abc_button_padding_vertical_material=0x7f07004b; + public static final int abc_cascading_menus_min_smallest_width=0x7f07004c; + public static final int abc_config_prefDialogWidth=0x7f070031; + public static final int abc_control_corner_material=0x7f07004d; + public static final int abc_control_inset_material=0x7f07004e; + public static final int abc_control_padding_material=0x7f07004f; + public static final int abc_dialog_fixed_height_major=0x7f070032; + public static final int abc_dialog_fixed_height_minor=0x7f070033; + public static final int abc_dialog_fixed_width_major=0x7f070034; + public static final int abc_dialog_fixed_width_minor=0x7f070035; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070050; + public static final int abc_dialog_list_padding_top_no_title=0x7f070051; + public static final int abc_dialog_min_width_major=0x7f070036; + public static final int abc_dialog_min_width_minor=0x7f070037; + public static final int abc_dialog_padding_material=0x7f070052; + public static final int abc_dialog_padding_top_material=0x7f070053; + public static final int abc_dialog_title_divider_material=0x7f070054; + public static final int abc_disabled_alpha_material_dark=0x7f070055; + public static final int abc_disabled_alpha_material_light=0x7f070056; + public static final int abc_dropdownitem_icon_width=0x7f070057; + public static final int abc_dropdownitem_text_padding_left=0x7f070058; + public static final int abc_dropdownitem_text_padding_right=0x7f070059; + public static final int abc_edit_text_inset_bottom_material=0x7f07005a; + public static final int abc_edit_text_inset_horizontal_material=0x7f07005b; + public static final int abc_edit_text_inset_top_material=0x7f07005c; + public static final int abc_floating_window_z=0x7f07005d; + public static final int abc_list_item_padding_horizontal_material=0x7f07005e; + public static final int abc_panel_menu_list_width=0x7f07005f; + public static final int abc_progress_bar_height_material=0x7f070060; + public static final int abc_search_view_preferred_height=0x7f070061; + public static final int abc_search_view_preferred_width=0x7f070062; + public static final int abc_seekbar_track_background_height_material=0x7f070063; + public static final int abc_seekbar_track_progress_height_material=0x7f070064; + public static final int abc_select_dialog_padding_start_material=0x7f070065; + public static final int abc_switch_padding=0x7f07003c; + public static final int abc_text_size_body_1_material=0x7f070066; + public static final int abc_text_size_body_2_material=0x7f070067; + public static final int abc_text_size_button_material=0x7f070068; + public static final int abc_text_size_caption_material=0x7f070069; + public static final int abc_text_size_display_1_material=0x7f07006a; + public static final int abc_text_size_display_2_material=0x7f07006b; + public static final int abc_text_size_display_3_material=0x7f07006c; + public static final int abc_text_size_display_4_material=0x7f07006d; + public static final int abc_text_size_headline_material=0x7f07006e; + public static final int abc_text_size_large_material=0x7f07006f; + public static final int abc_text_size_medium_material=0x7f070070; + public static final int abc_text_size_menu_header_material=0x7f070071; + public static final int abc_text_size_menu_material=0x7f070072; + public static final int abc_text_size_small_material=0x7f070073; + public static final int abc_text_size_subhead_material=0x7f070074; + public static final int abc_text_size_subtitle_material_toolbar=0x7f07002f; + public static final int abc_text_size_title_material=0x7f070075; + public static final int abc_text_size_title_material_toolbar=0x7f070030; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int activity_horizontal_margin=0x7f07009b; + public static final int activity_vertical_margin=0x7f07009c; + public static final int compat_button_inset_horizontal_material=0x7f07008b; + public static final int compat_button_inset_vertical_material=0x7f07008c; + public static final int compat_button_padding_horizontal_material=0x7f07008d; + public static final int compat_button_padding_vertical_material=0x7f07008e; + public static final int compat_control_corner_material=0x7f07008f; + public static final int design_appbar_elevation=0x7f07000e; + public static final int design_bottom_navigation_active_item_max_width=0x7f07000f; + public static final int design_bottom_navigation_active_text_size=0x7f070010; + public static final int design_bottom_navigation_elevation=0x7f070011; + public static final int design_bottom_navigation_height=0x7f070012; + public static final int design_bottom_navigation_item_max_width=0x7f070013; + public static final int design_bottom_navigation_item_min_width=0x7f070014; + public static final int design_bottom_navigation_margin=0x7f070015; + public static final int design_bottom_navigation_shadow_height=0x7f070016; + public static final int design_bottom_navigation_text_size=0x7f070017; + public static final int design_bottom_sheet_modal_elevation=0x7f070018; + public static final int design_bottom_sheet_peek_height_min=0x7f070019; + public static final int design_fab_border_width=0x7f07001a; + public static final int design_fab_elevation=0x7f07001b; + public static final int design_fab_image_size=0x7f07001c; + public static final int design_fab_size_mini=0x7f07001d; + public static final int design_fab_size_normal=0x7f07001e; + public static final int design_fab_translation_z_pressed=0x7f07001f; + public static final int design_navigation_elevation=0x7f070020; + public static final int design_navigation_icon_padding=0x7f070021; + public static final int design_navigation_icon_size=0x7f070022; + public static final int design_navigation_max_width=0x7f070006; + public static final int design_navigation_padding_bottom=0x7f070023; + public static final int design_navigation_separator_vertical_padding=0x7f070024; + public static final int design_snackbar_action_inline_max_width=0x7f070007; + public static final int design_snackbar_background_corner_radius=0x7f070008; + public static final int design_snackbar_elevation=0x7f070025; + public static final int design_snackbar_extra_spacing_horizontal=0x7f070009; + public static final int design_snackbar_max_width=0x7f07000a; + public static final int design_snackbar_min_width=0x7f07000b; + public static final int design_snackbar_padding_horizontal=0x7f070026; + public static final int design_snackbar_padding_vertical=0x7f070027; + public static final int design_snackbar_padding_vertical_2lines=0x7f07000c; + public static final int design_snackbar_text_size=0x7f070028; + public static final int design_tab_max_width=0x7f070029; + public static final int design_tab_scrollable_min_width=0x7f07000d; + public static final int design_tab_text_size=0x7f07002a; + public static final int design_tab_text_size_2line=0x7f07002b; + public static final int disabled_alpha_material_dark=0x7f070076; + public static final int disabled_alpha_material_light=0x7f070077; + public static final int empty_icon_height=0x7f0700a5; + /** Main Activity components + */ + public static final int empty_icon_width=0x7f0700a4; + public static final int fastscroll_default_thickness=0x7f070000; + public static final int fastscroll_margin=0x7f070001; + public static final int fastscroll_minimum_range=0x7f070002; + public static final int highlight_alpha_material_colored=0x7f070078; + public static final int highlight_alpha_material_dark=0x7f070079; + public static final int highlight_alpha_material_light=0x7f07007a; + public static final int hint_alpha_material_dark=0x7f07007b; + public static final int hint_alpha_material_light=0x7f07007c; + public static final int hint_pressed_alpha_material_dark=0x7f07007d; + public static final int hint_pressed_alpha_material_light=0x7f07007e; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004; + public static final int item_touch_helper_swipe_escape_velocity=0x7f070005; + public static final int navigation_header_height=0x7f0700a6; + public static final int navigation_item_height=0x7f0700a7; + public static final int navigation_item_icon_size=0x7f0700a8; + public static final int notification_action_icon_size=0x7f070090; + public static final int notification_action_text_size=0x7f070091; + public static final int notification_big_circle_margin=0x7f070092; + public static final int notification_content_margin_start=0x7f070088; + public static final int notification_large_icon_height=0x7f070093; + public static final int notification_large_icon_width=0x7f070094; + public static final int notification_main_column_padding_top=0x7f070089; + public static final int notification_media_narrow_margin=0x7f07008a; + public static final int notification_right_icon_size=0x7f070095; + public static final int notification_right_side_padding_top=0x7f070087; + public static final int notification_small_icon_background_padding=0x7f070096; + public static final int notification_small_icon_size_as_large=0x7f070097; + public static final int notification_subtext_size=0x7f070098; + public static final int notification_top_pad=0x7f070099; + public static final int notification_top_pad_large_text=0x7f07009a; + public static final int padding_extra_extra_large=0x7f0700a3; + public static final int padding_extra_large=0x7f0700a2; + public static final int padding_large=0x7f0700a1; + public static final int padding_medium=0x7f0700a0; + public static final int padding_small=0x7f07009f; + /** Padding + */ + public static final int padding_tiny=0x7f07009d; + public static final int padding_tiny_plus_one=0x7f07009e; + public static final int tooltip_corner_radius=0x7f07007f; + public static final int tooltip_horizontal_padding=0x7f070080; + public static final int tooltip_margin=0x7f070081; + public static final int tooltip_precise_anchor_extra_offset=0x7f070082; + public static final int tooltip_precise_anchor_threshold=0x7f070083; + public static final int tooltip_vertical_padding=0x7f070084; + public static final int tooltip_y_offset_non_touch=0x7f070085; + public static final int tooltip_y_offset_touch=0x7f070086; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; + public static final int abc_cab_background_internal_bg=0x7f02000d; + public static final int abc_cab_background_top_material=0x7f02000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; + public static final int abc_control_background_material=0x7f020010; + public static final int abc_dialog_material_background=0x7f020011; + public static final int abc_edit_text_material=0x7f020012; + public static final int abc_ic_ab_back_material=0x7f020013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; + public static final int abc_ic_clear_material=0x7f020015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; + public static final int abc_ic_go_search_api_material=0x7f020017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_overflow_material=0x7f02001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; + public static final int abc_ic_search_api_material=0x7f02001e; + public static final int abc_ic_star_black_16dp=0x7f02001f; + public static final int abc_ic_star_black_36dp=0x7f020020; + public static final int abc_ic_star_black_48dp=0x7f020021; + public static final int abc_ic_star_half_black_16dp=0x7f020022; + public static final int abc_ic_star_half_black_36dp=0x7f020023; + public static final int abc_ic_star_half_black_48dp=0x7f020024; + public static final int abc_ic_voice_search_api_material=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_indicator_material=0x7f020035; + public static final int abc_ratingbar_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_tick_mark_material=0x7f02003e; + public static final int abc_seekbar_track_material=0x7f02003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f020040; + public static final int abc_spinner_textfield_background_material=0x7f020041; + public static final int abc_switch_thumb_material=0x7f020042; + public static final int abc_switch_track_mtrl_alpha=0x7f020043; + public static final int abc_tab_indicator_material=0x7f020044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; + public static final int abc_text_cursor_material=0x7f020046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; + public static final int abc_textfield_search_material=0x7f020051; + public static final int abc_vector_test=0x7f020052; + public static final int avd_hide_password=0x7f020053; + public static final int avd_show_password=0x7f020054; + public static final int bg_wool_dark=0x7f020055; + public static final int bitmap_wool_dark=0x7f020056; + public static final int border_edittext=0x7f020057; + public static final int control_button=0x7f020058; + public static final int control_button_normal=0x7f020059; + public static final int control_button_pressed=0x7f02005a; + public static final int design_bottom_navigation_item_background=0x7f02005b; + public static final int design_fab_background=0x7f02005c; + public static final int design_ic_visibility=0x7f02005d; + public static final int design_ic_visibility_off=0x7f02005e; + public static final int design_password_eye=0x7f02005f; + public static final int design_snackbar_background=0x7f020060; + public static final int ic_close=0x7f020061; + public static final int ic_file=0x7f020062; + public static final int ic_folder=0x7f020063; + public static final int ic_launcher=0x7f020064; + public static final int ic_minimize=0x7f020065; + public static final int logo=0x7f020066; + public static final int mcbtn_normal=0x7f020067; + public static final int mcbtn_pressed=0x7f020068; + public static final int mcbutton=0x7f020069; + public static final int menu_hamburger=0x7f02006a; + public static final int mojang_logo=0x7f02006b; + public static final int mouse_pointer=0x7f02006c; + public static final int navigation_empty_icon=0x7f02006d; + public static final int notification_action_background=0x7f02006e; + public static final int notification_bg=0x7f02006f; + public static final int notification_bg_low=0x7f020070; + public static final int notification_bg_low_normal=0x7f020071; + public static final int notification_bg_low_pressed=0x7f020072; + public static final int notification_bg_normal=0x7f020073; + public static final int notification_bg_normal_pressed=0x7f020074; + public static final int notification_icon_background=0x7f020075; + public static final int notification_template_icon_bg=0x7f02007b; + public static final int notification_template_icon_low_bg=0x7f02007c; + public static final int notification_tile_bg=0x7f020076; + public static final int notify_panel_notification_icon_bg=0x7f020077; + public static final int toggle_log=0x7f020078; + public static final int tooltip_frame_dark=0x7f020079; + public static final int tooltip_frame_light=0x7f02007a; + } + public static final class id { + public static final int ALT=0x7f06004a; + public static final int CTRL=0x7f06004b; + public static final int FUNCTION=0x7f06004c; + public static final int META=0x7f06004d; + public static final int SHIFT=0x7f06004e; + public static final int SYM=0x7f06004f; + public static final int action0=0x7f0600d8; + public static final int action_bar=0x7f06007b; + public static final int action_bar_activity_content=0x7f06000e; + public static final int action_bar_container=0x7f06007a; + public static final int action_bar_root=0x7f060076; + public static final int action_bar_spinner=0x7f06000f; + public static final int action_bar_subtitle=0x7f06005a; + public static final int action_bar_title=0x7f060059; + public static final int action_container=0x7f0600d5; + public static final int action_context_bar=0x7f06007c; + public static final int action_divider=0x7f0600dc; + public static final int action_image=0x7f0600d6; + public static final int action_menu_divider=0x7f060010; + public static final int action_menu_presenter=0x7f060011; + public static final int action_mode_bar=0x7f060078; + public static final int action_mode_bar_stub=0x7f060077; + public static final int action_mode_close_button=0x7f06005b; + public static final int action_text=0x7f0600d7; + public static final int actions=0x7f0600e5; + public static final int activity_chooser_view_content=0x7f06005c; + public static final int add=0x7f060045; + public static final int alertTitle=0x7f06006f; + public static final int all=0x7f060033; + public static final int always=0x7f060050; + public static final int async=0x7f060055; + public static final int auto=0x7f060021; + public static final int beginning=0x7f060048; + public static final int blocking=0x7f060056; + public static final int bottom=0x7f060022; + public static final int bottombar_author_logo=0x7f06008b; + public static final int bottombar_version_view=0x7f06008a; + public static final int buttonPanel=0x7f060062; + public static final int cancel_action=0x7f0600d9; + public static final int center=0x7f060023; + public static final int center_horizontal=0x7f060024; + public static final int center_vertical=0x7f060025; + public static final int checkbox=0x7f060072; + public static final int chronometer=0x7f0600e1; + public static final int clip_horizontal=0x7f06002f; + public static final int clip_vertical=0x7f060030; + public static final int collapseActionView=0x7f060051; + public static final int container=0x7f060094; + public static final int contentPanel=0x7f060065; + public static final int content_frame=0x7f0600b9; + public static final int content_log_close_button=0x7f0600d0; + public static final int content_log_layout=0x7f0600cf; + public static final int content_log_scroll=0x7f0600d2; + public static final int content_log_toggle_log=0x7f0600d1; + public static final int content_text_debug=0x7f0600d3; + public static final int control_debug=0x7f0600be; + public static final int control_down=0x7f0600c4; + public static final int control_inventory=0x7f0600cc; + public static final int control_jump=0x7f0600c8; + public static final int control_keyboard=0x7f0600c0; + public static final int control_left=0x7f0600c6; + public static final int control_listplayers=0x7f0600c3; + public static final int control_mouse_toggle=0x7f0600cd; + public static final int control_primary=0x7f0600c9; + public static final int control_right=0x7f0600c7; + public static final int control_secondary=0x7f0600ca; + public static final int control_shift=0x7f0600cb; + public static final int control_talk=0x7f0600bf; + public static final int control_thirdperson=0x7f0600c1; + public static final int control_togglecontrol=0x7f0600ce; + public static final int control_up=0x7f0600c5; + public static final int control_zoom=0x7f0600c2; + public static final int controlsetting_checkbox_hidden=0x7f060091; + public static final int controlsetting_edit_name=0x7f06008f; + public static final int controlsetting_spinner_lwjglkeycode=0x7f060090; + public static final int coordinator=0x7f060095; + public static final int custom=0x7f06006c; + public static final int customPanel=0x7f06006b; + public static final int customctrl_controllayout=0x7f06008d; + public static final int customctrl_drawerlayout=0x7f06008c; + public static final int customctrl_navigation_view=0x7f06008e; + public static final int decor_content_parent=0x7f060079; + public static final int default_activity_button=0x7f06005f; + public static final int design_bottom_sheet=0x7f060097; + public static final int design_menu_item_action_area=0x7f06009e; + public static final int design_menu_item_action_area_stub=0x7f06009d; + public static final int design_menu_item_text=0x7f06009c; + public static final int design_navigation_view=0x7f06009b; + public static final int disableHome=0x7f06003f; + public static final int edit_query=0x7f06007d; + public static final int end=0x7f060026; + public static final int end_padder=0x7f0600e7; + public static final int enterAlways=0x7f06001c; + public static final int enterAlwaysCollapsed=0x7f06001d; + public static final int exitUntilCollapsed=0x7f06001e; + public static final int expand_activities_button=0x7f06005d; + public static final int expanded_menu=0x7f060071; + public static final int fill=0x7f060031; + public static final int fill_horizontal=0x7f060032; + public static final int fill_vertical=0x7f060027; + public static final int fixed=0x7f060036; + public static final int forever=0x7f060057; + public static final int ghost_view=0x7f060000; + public static final int home=0x7f060012; + public static final int homeAsUp=0x7f060040; + public static final int icon=0x7f060061; + public static final int icon_group=0x7f0600e6; + public static final int ifRoom=0x7f060052; + public static final int image=0x7f06005e; + public static final int info=0x7f0600e2; + public static final int italic=0x7f060058; + public static final int item_touch_helper_previous_elevation=0x7f06000a; + public static final int lMTVVer=0x7f0600ab; + public static final int largeLabel=0x7f060093; + public static final int launcherAccEmail=0x7f0600a0; + public static final int launcherAccOffSwitch=0x7f0600a3; + public static final int launcherAccPassword=0x7f0600a1; + public static final int launcherAccProgress=0x7f0600a4; + public static final int launcherAccRememberSwitch=0x7f0600a2; + public static final int launcherAccUsername=0x7f0600b4; + public static final int launcherMainExitbtns=0x7f0600b1; + public static final int launcherMainLeftLayout=0x7f0600aa; + public static final int launcherMainPlayButton=0x7f0600ad; + public static final int launcherMainRightLayout=0x7f0600ae; + public static final int launcherMainSelectVersion=0x7f0600ac; + public static final int launcherMainUsernameView=0x7f0600af; + public static final int launcherMainVersionView=0x7f0600b0; + public static final int launchermainFragmentTabView=0x7f0600a5; + public static final int launchermainTabLayout=0x7f0600a6; + public static final int launchermainTabPager=0x7f0600a7; + public static final int launcherupdateLogView=0x7f0600b3; + public static final int launcherupdateProgressBar=0x7f0600b2; + public static final int left=0x7f060028; + public static final int line1=0x7f060017; + public static final int line3=0x7f060018; + public static final int listMode=0x7f06003d; + public static final int list_item=0x7f060060; + public static final int lmaintabconsoleLogCrashTextView=0x7f0600b6; + public static final int lmaintabconsoleLogTextView=0x7f0600b5; + public static final int lmaintabnewsNewsView=0x7f0600b7; + public static final int main_drawer_options=0x7f0600b8; + public static final int main_game_render_view=0x7f0600bb; + public static final int main_log_behind_GL=0x7f0600ba; + public static final int main_mouse_pointer=0x7f0600bd; + public static final int main_navigation_view=0x7f0600d4; + public static final int main_touchpad=0x7f0600bc; + public static final int masked=0x7f0600f8; + public static final int media_actions=0x7f0600db; + public static final int menu_ctrl_add=0x7f0600fa; + public static final int menu_ctrl_edit=0x7f0600fb; + public static final int menu_ctrl_load=0x7f0600f9; + public static final int menu_ctrl_remove=0x7f0600fc; + public static final int message=0x7f0600f0; + public static final int middle=0x7f060049; + public static final int mini=0x7f060034; + public static final int multiply=0x7f060038; + public static final int nav_customkey=0x7f060100; + public static final int nav_debug=0x7f0600ff; + public static final int nav_forceclose=0x7f0600fd; + public static final int nav_viewlog=0x7f0600fe; + public static final int navigation_header_container=0x7f06009a; + public static final int never=0x7f060053; + public static final int none=0x7f06002c; + public static final int normal=0x7f060035; + public static final int notification_background=0x7f0600e4; + public static final int notification_main_column=0x7f0600de; + public static final int notification_main_column_container=0x7f0600dd; + public static final int parallax=0x7f06002d; + public static final int parentPanel=0x7f060064; + public static final int parent_matrix=0x7f060001; + public static final int pin=0x7f06002e; + public static final int progressDownloadBar=0x7f0600a8; + public static final int progressDownloadText=0x7f0600a9; + public static final int progress_circular=0x7f060013; + public static final int progress_horizontal=0x7f060014; + public static final int radio=0x7f060074; + public static final int right=0x7f060029; + public static final int right_icon=0x7f0600e3; + public static final int right_side=0x7f0600df; + public static final int save_image_matrix=0x7f060002; + public static final int save_non_transition_alpha=0x7f060003; + public static final int save_scale_type=0x7f060004; + public static final int screen=0x7f060039; + public static final int scroll=0x7f06001f; + public static final int scrollIndicatorDown=0x7f06006a; + public static final int scrollIndicatorUp=0x7f060066; + public static final int scrollView=0x7f060067; + public static final int scrollable=0x7f060037; + public static final int search_badge=0x7f06007f; + public static final int search_bar=0x7f06007e; + public static final int search_button=0x7f060080; + public static final int search_close_btn=0x7f060085; + public static final int search_edit_frame=0x7f060081; + public static final int search_go_btn=0x7f060087; + public static final int search_mag_icon=0x7f060082; + public static final int search_plate=0x7f060083; + public static final int search_src_text=0x7f060084; + public static final int search_voice_btn=0x7f060088; + public static final int select_dialog_listview=0x7f060089; + public static final int setting_progressseek_control=0x7f0600eb; + public static final int setting_progressseek_maxdxref=0x7f0600e9; + public static final int settings_seekbar_controlsize=0x7f0600ea; + public static final int settings_seekbar_setmaxdxref=0x7f0600e8; + public static final int settings_switch_enablefreeform=0x7f0600ec; + public static final int settings_switch_forgetoptifpath=0x7f0600ed; + public static final int shortcut=0x7f060073; + public static final int showCustom=0x7f060041; + public static final int showHome=0x7f060042; + public static final int showTitle=0x7f060043; + public static final int smallLabel=0x7f060092; + public static final int snackbar_action=0x7f060099; + public static final int snackbar_text=0x7f060098; + public static final int snap=0x7f060020; + public static final int spacer=0x7f060063; + public static final int split_action_bar=0x7f060015; + public static final int src_atop=0x7f06003a; + public static final int src_in=0x7f06003b; + public static final int src_over=0x7f06003c; + public static final int start=0x7f06002a; + public static final int startscreenLinearLayout1=0x7f0600ee; + public static final int startscreenProgress=0x7f0600ef; + public static final int status_bar_latest_event_content=0x7f0600da; + public static final int submenuarrow=0x7f060075; + public static final int submit_area=0x7f060086; + public static final int tabMode=0x7f06003e; + public static final int text=0x7f060019; + public static final int text2=0x7f06001a; + public static final int textSpacerNoButtons=0x7f060069; + public static final int textSpacerNoTitle=0x7f060068; + public static final int text_input_password_toggle=0x7f06009f; + public static final int textinput_counter=0x7f06000b; + public static final int textinput_error=0x7f06000c; + public static final int time=0x7f0600e0; + public static final int title=0x7f06001b; + public static final int titleDividerNoCustom=0x7f060070; + public static final int title_template=0x7f06006e; + public static final int top=0x7f06002b; + public static final int topPanel=0x7f06006d; + public static final int topbar_earth_icon=0x7f0600f1; + public static final int topbar_help_text=0x7f0600f3; + public static final int topbar_language_text=0x7f0600f2; + public static final int topbar_logo=0x7f0600f4; + public static final int topbar_navmenu_icon=0x7f0600f5; + public static final int topbar_undertop_view=0x7f0600f6; + public static final int touch_outside=0x7f060096; + public static final int transition_current_scene=0x7f060005; + public static final int transition_layout_save=0x7f060006; + public static final int transition_position=0x7f060007; + public static final int transition_scene_layoutid_cache=0x7f060008; + public static final int transition_transform=0x7f060009; + public static final int uniform=0x7f060046; + public static final int up=0x7f060016; + public static final int useLogo=0x7f060044; + public static final int ver_clone=0x7f060101; + public static final int ver_edit=0x7f060102; + public static final int ver_remove=0x7f060103; + public static final int view_offset_helper=0x7f06000d; + public static final int visible=0x7f0600f7; + public static final int withText=0x7f060054; + public static final int wrap_content=0x7f060047; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090005; + public static final int abc_config_activityShortDur=0x7f090006; + public static final int app_bar_elevation_anim_duration=0x7f090001; + public static final int bottom_sheet_slide_duration=0x7f090002; + public static final int cancel_button_image_alpha=0x7f090007; + public static final int config_tooltipAnimTime=0x7f090008; + public static final int design_snackbar_text_max_lines=0x7f090000; + public static final int hide_password_duration=0x7f090003; + public static final int show_password_duration=0x7f090004; + public static final int status_bar_notification_info_maxnum=0x7f090009; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_alert_dialog_title_material=0x7f03000b; + public static final int abc_dialog_title_material=0x7f03000c; + public static final int abc_expanded_menu_layout=0x7f03000d; + public static final int abc_list_menu_item_checkbox=0x7f03000e; + public static final int abc_list_menu_item_icon=0x7f03000f; + public static final int abc_list_menu_item_layout=0x7f030010; + public static final int abc_list_menu_item_radio=0x7f030011; + public static final int abc_popup_menu_header_item_layout=0x7f030012; + public static final int abc_popup_menu_item_layout=0x7f030013; + public static final int abc_screen_content_include=0x7f030014; + public static final int abc_screen_simple=0x7f030015; + public static final int abc_screen_simple_overlay_action_mode=0x7f030016; + public static final int abc_screen_toolbar=0x7f030017; + public static final int abc_search_dropdown_item_icons_2line=0x7f030018; + public static final int abc_search_view=0x7f030019; + public static final int abc_select_dialog_material=0x7f03001a; + public static final int bottom_bar=0x7f03001b; + public static final int control_mapping=0x7f03001c; + public static final int control_setting=0x7f03001d; + public static final int design_bottom_navigation_item=0x7f03001e; + public static final int design_bottom_sheet_dialog=0x7f03001f; + public static final int design_layout_snackbar=0x7f030020; + public static final int design_layout_snackbar_include=0x7f030021; + public static final int design_layout_tab_icon=0x7f030022; + public static final int design_layout_tab_text=0x7f030023; + public static final int design_menu_item_action_area=0x7f030024; + public static final int design_navigation_item=0x7f030025; + public static final int design_navigation_item_header=0x7f030026; + public static final int design_navigation_item_separator=0x7f030027; + public static final int design_navigation_item_subheader=0x7f030028; + public static final int design_navigation_menu=0x7f030029; + public static final int design_navigation_menu_item=0x7f03002a; + public static final int design_text_input_password_icon=0x7f03002b; + public static final int launcher_login=0x7f03002c; + public static final int launcher_main=0x7f03002d; + public static final int launcher_update=0x7f03002e; + public static final int launcher_user=0x7f03002f; + public static final int lmaintab_consolelog=0x7f030030; + public static final int lmaintab_crashlog=0x7f030031; + public static final int lmaintab_news=0x7f030032; + public static final int main=0x7f030033; + public static final int notification_action=0x7f030034; + public static final int notification_action_tombstone=0x7f030035; + public static final int notification_media_action=0x7f030036; + public static final int notification_media_cancel_action=0x7f030037; + public static final int notification_template_big_media=0x7f030038; + public static final int notification_template_big_media_custom=0x7f030039; + public static final int notification_template_big_media_narrow=0x7f03003a; + public static final int notification_template_big_media_narrow_custom=0x7f03003b; + public static final int notification_template_custom_big=0x7f03003c; + public static final int notification_template_icon_group=0x7f03003d; + public static final int notification_template_lines_media=0x7f03003e; + public static final int notification_template_media=0x7f03003f; + public static final int notification_template_media_custom=0x7f030040; + public static final int notification_template_part_chronometer=0x7f030041; + public static final int notification_template_part_time=0x7f030042; + public static final int select_dialog_item_material=0x7f030043; + public static final int select_dialog_multichoice_material=0x7f030044; + public static final int select_dialog_singlechoice_material=0x7f030045; + public static final int settings=0x7f030046; + public static final int start_screen=0x7f030047; + public static final int support_simple_spinner_dropdown_item=0x7f030048; + public static final int tooltip=0x7f030049; + public static final int top_bar=0x7f03004a; + } + public static final class menu { + public static final int menu_customctrl=0x7f0e0000; + public static final int menu_runopt=0x7f0e0001; + public static final int menu_versionopt=0x7f0e0002; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0b0008; + public static final int abc_action_bar_home_description_format=0x7f0b0009; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0b000a; + public static final int abc_action_bar_up_description=0x7f0b000b; + public static final int abc_action_menu_overflow_description=0x7f0b000c; + public static final int abc_action_mode_done=0x7f0b000d; + public static final int abc_activity_chooser_view_see_all=0x7f0b000e; + public static final int abc_activitychooserview_choose_application=0x7f0b000f; + public static final int abc_capital_off=0x7f0b0010; + public static final int abc_capital_on=0x7f0b0011; + public static final int abc_font_family_body_1_material=0x7f0b001d; + public static final int abc_font_family_body_2_material=0x7f0b001e; + public static final int abc_font_family_button_material=0x7f0b001f; + public static final int abc_font_family_caption_material=0x7f0b0020; + public static final int abc_font_family_display_1_material=0x7f0b0021; + public static final int abc_font_family_display_2_material=0x7f0b0022; + public static final int abc_font_family_display_3_material=0x7f0b0023; + public static final int abc_font_family_display_4_material=0x7f0b0024; + public static final int abc_font_family_headline_material=0x7f0b0025; + public static final int abc_font_family_menu_material=0x7f0b0026; + public static final int abc_font_family_subhead_material=0x7f0b0027; + public static final int abc_font_family_title_material=0x7f0b0028; + public static final int abc_search_hint=0x7f0b0012; + public static final int abc_searchview_description_clear=0x7f0b0013; + public static final int abc_searchview_description_query=0x7f0b0014; + public static final int abc_searchview_description_search=0x7f0b0015; + public static final int abc_searchview_description_submit=0x7f0b0016; + public static final int abc_searchview_description_voice=0x7f0b0017; + public static final int abc_shareactionprovider_share_with=0x7f0b0018; + public static final int abc_shareactionprovider_share_with_application=0x7f0b0019; + public static final int abc_toolbar_collapse_description=0x7f0b001a; + /** Action bar part + */ + public static final int actionbar_help=0x7f0b002b; + public static final int alerttitle_installmod=0x7f0b0045; + public static final int alerttitle_installoptifine=0x7f0b0046; + /** AlertDialog title + */ + public static final int alerttitle_selectkeymap=0x7f0b0044; + /** App name part + */ + public static final int app_name=0x7f0b0029; + public static final int app_short_name=0x7f0b002a; + public static final int appbar_scrolling_view_behavior=0x7f0b0000; + public static final int bottom_sheet_behavior=0x7f0b0001; + public static final int character_counter_pattern=0x7f0b0002; + public static final int control_adebug=0x7f0b008d; + public static final int control_chat=0x7f0b007b; + public static final int control_customkey=0x7f0b008e; + public static final int control_debug=0x7f0b007c; + public static final int control_down=0x7f0b0085; + /** MainActivity: Menu advanced controls + */ + public static final int control_forceclose=0x7f0b008b; + public static final int control_inventory=0x7f0b0081; + public static final int control_jump=0x7f0b0086; + public static final int control_keyboard=0x7f0b007a; + public static final int control_left=0x7f0b0083; + public static final int control_listplayers=0x7f0b0088; + public static final int control_more3=0x7f0b008f; + public static final int control_more4=0x7f0b0090; + public static final int control_mouseoff=0x7f0b0089; + public static final int control_mouseon=0x7f0b008a; + public static final int control_primary=0x7f0b007e; + public static final int control_right=0x7f0b0084; + public static final int control_secondary=0x7f0b007f; + public static final int control_shift=0x7f0b0080; + public static final int control_thirdperson=0x7f0b0087; + public static final int control_toggle=0x7f0b0079; + public static final int control_up=0x7f0b0082; + public static final int control_viewout=0x7f0b008c; + public static final int control_zoom=0x7f0b007d; + /** MainActivity: Control buttons + */ + public static final int controls=0x7f0b0078; + public static final int customctrl_hidden=0x7f0b0092; + public static final int customctrl_keyname=0x7f0b0091; + /** Error messages + */ + public static final int error_checklog=0x7f0b0047; + public static final int error_convert_client=0x7f0b004c; + public static final int error_convert_lib=0x7f0b004b; + public static final int error_load_version=0x7f0b004a; + public static final int error_no_version=0x7f0b0049; + public static final int error_show_less=0x7f0b004e; + public static final int error_show_more=0x7f0b004d; + public static final int error_title=0x7f0b0048; + /** Global strings + */ + public static final int global_add=0x7f0b006c; + public static final int global_edit=0x7f0b006d; + public static final int global_error_field_empty=0x7f0b0072; + public static final int global_load=0x7f0b006e; + public static final int global_name=0x7f0b006f; + public static final int global_remove=0x7f0b0070; + public static final int global_save=0x7f0b0071; + public static final int hint_control_mapping=0x7f0b003c; + /** Hint + */ + public static final int hint_select_account=0x7f0b003b; + /** Languages list part + */ + public static final int language_name=0x7f0b002c; + /** Logging output + */ + public static final int log_title=0x7f0b002d; + public static final int login_error_exist_username=0x7f0b0039; + public static final int login_error_short_username=0x7f0b0038; + public static final int login_offline_alert_skip=0x7f0b0037; + public static final int login_offline_switch=0x7f0b0035; + public static final int login_offline_warning_1=0x7f0b0036; + public static final int login_online_create_account=0x7f0b0034; + public static final int login_online_login_label=0x7f0b0033; + public static final int login_online_password_hint=0x7f0b0030; + public static final int login_online_password_question=0x7f0b0031; + public static final int login_online_remember=0x7f0b0032; + /** Login strings + */ + public static final int login_online_username_hint=0x7f0b002e; + public static final int login_online_username_question=0x7f0b002f; + public static final int login_select_account=0x7f0b003a; + public static final int mcl_launch_cleancache=0x7f0b0056; + public static final int mcl_launch_convert_client=0x7f0b005b; + public static final int mcl_launch_convert_lib=0x7f0b005a; + public static final int mcl_launch_download_assets=0x7f0b005d; + public static final int mcl_launch_download_client=0x7f0b0059; + public static final int mcl_launch_download_lib=0x7f0b0058; + public static final int mcl_launch_downloading=0x7f0b0057; + public static final int mcl_launch_patch_client=0x7f0b005c; + public static final int mcl_option_about=0x7f0b0064; + public static final int mcl_option_checkupdate=0x7f0b0061; + public static final int mcl_option_customcontrol=0x7f0b0062; + public static final int mcl_option_modmgr=0x7f0b005f; + public static final int mcl_option_optifineinstall=0x7f0b0060; + public static final int mcl_option_settings=0x7f0b0063; + public static final int mcl_options=0x7f0b005e; + public static final int mcl_setting_enablefreeform=0x7f0b0067; + public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0b006a; + public static final int mcl_setting_subtitle_setmaxdxref=0x7f0b0066; + public static final int mcl_setting_title_controlsize=0x7f0b0068; + public static final int mcl_setting_title_forgetoptifpath=0x7f0b0069; + public static final int mcl_setting_title_setmaxdxref=0x7f0b0065; + public static final int mcl_tab_console=0x7f0b0053; + public static final int mcl_tab_crash=0x7f0b0054; + /** + Exit + + MCLauncherActivity: Tabs + */ + public static final int mcl_tab_news=0x7f0b0052; + public static final int mcl_version_clone=0x7f0b006b; + /** MCLauncherActivity: Strings + */ + public static final int mcl_version_msg=0x7f0b0055; + public static final int mcn_exit_call=0x7f0b0074; + public static final int mcn_exit_confirm=0x7f0b0077; + public static final int mcn_exit_crash=0x7f0b0075; + public static final int mcn_exit_errcrash=0x7f0b0076; + /** + +%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + + " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + + //"© 2019 Khanh Duy Tran\n" + + "Using libraries:\n" + + " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + + //" • Boardwalk memory manager (not used now).\n" + + " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + + " • dx: tool to convert.\n" + + " • Java AWT Implementation includes:\n" + + " - Boardwalk's makeshift.\n" + + " - Apache Harmony AWT Framework.\n" + + " - OpenJDK 7 codes implementation.\n" + + " - Developer code implement (copy text, open browser,...)\n" + + "\n" + + "* Notes:\n" + + " - This app is currently BETA, it will not be stable.\n" + + //"* This app will unstable on Android 7.0 or higher devices.\n" + + " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + + " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") + + + MainActivity: strings + */ + public static final int mcn_exit_title=0x7f0b0073; + public static final int password_toggle_content_description=0x7f0b0003; + public static final int path_password_eye=0x7f0b0004; + public static final int path_password_eye_mask_strike_through=0x7f0b0005; + public static final int path_password_eye_mask_visible=0x7f0b0006; + public static final int path_password_strike_through=0x7f0b0007; + public static final int search_menu_title=0x7f0b001b; + public static final int status_bar_notification_info_overflow=0x7f0b001c; + public static final int toast_login_error=0x7f0b0050; + public static final int toast_optifine_success=0x7f0b0051; + /** Toast messages + */ + public static final int toast_permission_denied=0x7f0b004f; + /** Update part (unused now) + */ + public static final int update_console=0x7f0b0093; + public static final int warning_action_exit=0x7f0b0042; + public static final int warning_action_install=0x7f0b0040; + public static final int warning_action_tryanyway=0x7f0b0041; + public static final int warning_msg=0x7f0b003e; + public static final int warning_noshowagain=0x7f0b003f; + public static final int warning_remove_account=0x7f0b0043; + /** Warning + */ + public static final int warning_title=0x7f0b003d; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0800bb; + public static final int AlertDialog_AppCompat_Light=0x7f0800bc; + public static final int AlertTheme=0x7f08018c; + public static final int Animation_AppCompat_Dialog=0x7f0800bd; + public static final int Animation_AppCompat_DropDownUp=0x7f0800be; + public static final int Animation_AppCompat_Tooltip=0x7f0800bf; + public static final int Animation_Design_BottomSheetDialog=0x7f080004; + public static final int AppTheme=0x7f08018a; + public static final int Base_AlertDialog_AppCompat=0x7f0800c0; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0800c1; + public static final int Base_Animation_AppCompat_Dialog=0x7f0800c2; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800c3; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0800c4; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0800c5; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800c6; + public static final int Base_TextAppearance_AppCompat=0x7f080057; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080058; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080059; + public static final int Base_TextAppearance_AppCompat_Button=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f08005a; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f08005b; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f08005c; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f08005d; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f08005e; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f08005f; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080029; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080060; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08002a; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080061; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080062; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f080063; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08002b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f080064; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800c7; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080065; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080066; + public static final int Base_TextAppearance_AppCompat_Small=0x7f080067; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08002c; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080068; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08002d; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080069; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08002e; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800c8; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ac; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08006a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08006b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08006c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08006d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08006e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08006f; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080070; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800b3; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800b4; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800ad; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080071; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080072; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080073; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080074; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080075; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ca; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080076; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080077; + public static final int Base_Theme_AppCompat=0x7f080078; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800cb; + public static final int Base_Theme_AppCompat_Dialog=0x7f08002f; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080030; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800cc; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080031; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f08001f; + public static final int Base_Theme_AppCompat_Light=0x7f080079; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800cd; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080032; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080033; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800ce; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080034; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080020; + public static final int Base_ThemeOverlay_AppCompat=0x7f0800cf; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800d0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800d1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d2; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080035; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080036; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800d3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080037; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080038; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f080039; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080041; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080042; + public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; + public static final int Base_V21_Theme_AppCompat=0x7f08007a; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08007b; + public static final int Base_V21_Theme_AppCompat_Light=0x7f08007c; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08007d; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f08007e; + public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; + public static final int Base_V22_Theme_AppCompat=0x7f0800aa; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0800ab; + public static final int Base_V23_Theme_AppCompat=0x7f0800ae; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0800af; + public static final int Base_V26_Theme_AppCompat=0x7f0800b7; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0800b8; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800b9; + public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; + public static final int Base_V7_Theme_AppCompat=0x7f0800d4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800d5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0800d6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800d7; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800d8; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800d9; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800da; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800db; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0800dc; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800dd; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800de; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08007f; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080080; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080081; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080082; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080083; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0800df; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800e0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080043; + public static final int Base_Widget_AppCompat_Button=0x7f080084; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080085; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080086; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800b0; + public static final int Base_Widget_AppCompat_Button_Small=0x7f080087; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f080088; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800e2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080089; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08008a; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800e3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f08001e; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800e4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08008b; + public static final int Base_Widget_AppCompat_EditText=0x7f080044; + public static final int Base_Widget_AppCompat_ImageButton=0x7f08008c; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800e5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800e6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800e7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08008d; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08008e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08008f; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080090; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080091; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800e8; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080092; + public static final int Base_Widget_AppCompat_ListView=0x7f080093; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080094; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080095; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f080096; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080097; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800e9; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08003a; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08003b; + public static final int Base_Widget_AppCompat_RatingBar=0x7f080098; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800b1; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800b2; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800ea; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800eb; + public static final int Base_Widget_AppCompat_SeekBar=0x7f080099; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800ec; + public static final int Base_Widget_AppCompat_Spinner=0x7f08009a; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080021; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08009b; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ba; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08009c; + public static final int Base_Widget_Design_AppBarLayout=0x7f080002; + public static final int Base_Widget_Design_TabLayout=0x7f080006; + public static final int MenuDialog=0x7f08018d; + public static final int MenuDialogAnimation=0x7f08018e; + public static final int Platform_AppCompat=0x7f08003c; + public static final int Platform_AppCompat_Light=0x7f08003d; + public static final int Platform_ThemeOverlay_AppCompat=0x7f08009d; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08009e; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08009f; + public static final int Platform_V11_AppCompat=0x7f08003e; + public static final int Platform_V11_AppCompat_Light=0x7f08003f; + public static final int Platform_V14_AppCompat=0x7f080046; + public static final int Platform_V14_AppCompat_Light=0x7f080047; + public static final int Platform_V21_AppCompat=0x7f0800a0; + public static final int Platform_V21_AppCompat_Light=0x7f0800a1; + public static final int Platform_V25_AppCompat=0x7f0800b5; + public static final int Platform_V25_AppCompat_Light=0x7f0800b6; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080040; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080049; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08004a; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08004b; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08004c; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08004d; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08004e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08004f; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080050; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080051; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080052; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080053; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080054; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080055; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080056; + public static final int RunTheme=0x7f08018b; + public static final int TextAppearance_AppCompat=0x7f0800ed; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ee; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ef; + public static final int TextAppearance_AppCompat_Button=0x7f0800f0; + public static final int TextAppearance_AppCompat_Caption=0x7f0800f1; + public static final int TextAppearance_AppCompat_Display1=0x7f0800f2; + public static final int TextAppearance_AppCompat_Display2=0x7f0800f3; + public static final int TextAppearance_AppCompat_Display3=0x7f0800f4; + public static final int TextAppearance_AppCompat_Display4=0x7f0800f5; + public static final int TextAppearance_AppCompat_Headline=0x7f0800f6; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800f7; + public static final int TextAppearance_AppCompat_Large=0x7f0800f8; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800f9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800fa; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800fb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800fc; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800fd; + public static final int TextAppearance_AppCompat_Medium=0x7f0800fe; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ff; + public static final int TextAppearance_AppCompat_Menu=0x7f080100; + public static final int TextAppearance_AppCompat_Notification=0x7f0800a2; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800a3; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800a4; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080101; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080102; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800a5; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800a6; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800a7; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800a8; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800a9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080103; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080104; + public static final int TextAppearance_AppCompat_Small=0x7f080105; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080106; + public static final int TextAppearance_AppCompat_Subhead=0x7f080107; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f080108; + public static final int TextAppearance_AppCompat_Title=0x7f080109; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08010a; + public static final int TextAppearance_AppCompat_Tooltip=0x7f080048; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08010b; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08010c; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08010d; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08010e; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08010f; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080110; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080111; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080112; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080113; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f080114; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080115; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080116; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080117; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f080118; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080119; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08011a; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08011b; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08011c; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08011d; + public static final int TextAppearance_Compat_Notification=0x7f080183; + public static final int TextAppearance_Compat_Notification_Info=0x7f080184; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08017e; + public static final int TextAppearance_Compat_Notification_Line2=0x7f080189; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f080182; + public static final int TextAppearance_Compat_Notification_Media=0x7f08017f; + public static final int TextAppearance_Compat_Notification_Time=0x7f080185; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f080180; + public static final int TextAppearance_Compat_Notification_Title=0x7f080186; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f080181; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; + public static final int TextAppearance_Design_Counter=0x7f080008; + public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; + public static final int TextAppearance_Design_Error=0x7f08000a; + public static final int TextAppearance_Design_Hint=0x7f08000b; + public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; + public static final int TextAppearance_Design_Tab=0x7f08000d; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f08011e; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08011f; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080120; + public static final int Theme_AppCompat=0x7f080121; + public static final int Theme_AppCompat_CompactMenu=0x7f080122; + public static final int Theme_AppCompat_DayNight=0x7f080022; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080023; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f080024; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080025; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080026; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080027; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f080028; + public static final int Theme_AppCompat_Dialog=0x7f080123; + public static final int Theme_AppCompat_Dialog_Alert=0x7f080124; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080125; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f080126; + public static final int Theme_AppCompat_Light=0x7f080127; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f080128; + public static final int Theme_AppCompat_Light_Dialog=0x7f080129; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08012a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08012b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08012c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f08012d; + public static final int Theme_AppCompat_NoActionBar=0x7f08012e; + public static final int Theme_Design=0x7f08000e; + public static final int Theme_Design_BottomSheetDialog=0x7f08000f; + public static final int Theme_Design_Light=0x7f080010; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; + public static final int Theme_Design_Light_NoActionBar=0x7f080012; + public static final int Theme_Design_NoActionBar=0x7f080013; + public static final int ThemeOverlay_AppCompat=0x7f08012f; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080130; + public static final int ThemeOverlay_AppCompat_Dark=0x7f080131; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080132; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f080133; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080134; + public static final int ThemeOverlay_AppCompat_Light=0x7f080135; + public static final int Widget_AppCompat_ActionBar=0x7f080136; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f080137; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080138; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f080139; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f08013a; + public static final int Widget_AppCompat_ActionButton=0x7f08013b; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08013c; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08013d; + public static final int Widget_AppCompat_ActionMode=0x7f08013e; + public static final int Widget_AppCompat_ActivityChooserView=0x7f08013f; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080140; + public static final int Widget_AppCompat_Button=0x7f080141; + public static final int Widget_AppCompat_Button_Borderless=0x7f080142; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080143; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080144; + public static final int Widget_AppCompat_Button_Colored=0x7f080145; + public static final int Widget_AppCompat_Button_Small=0x7f080146; + public static final int Widget_AppCompat_ButtonBar=0x7f080147; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080148; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080149; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08014a; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08014b; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08014c; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08014d; + public static final int Widget_AppCompat_EditText=0x7f08014e; + public static final int Widget_AppCompat_ImageButton=0x7f08014f; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080150; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080151; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080152; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080153; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080154; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080155; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080156; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080157; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080158; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080159; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08015a; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08015b; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08015c; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08015d; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08015e; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08015f; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080160; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080161; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080162; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080163; + public static final int Widget_AppCompat_Light_SearchView=0x7f080164; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080165; + public static final int Widget_AppCompat_ListMenuView=0x7f080166; + public static final int Widget_AppCompat_ListPopupWindow=0x7f080167; + public static final int Widget_AppCompat_ListView=0x7f080168; + public static final int Widget_AppCompat_ListView_DropDown=0x7f080169; + public static final int Widget_AppCompat_ListView_Menu=0x7f08016a; + public static final int Widget_AppCompat_PopupMenu=0x7f08016b; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08016c; + public static final int Widget_AppCompat_PopupWindow=0x7f08016d; + public static final int Widget_AppCompat_ProgressBar=0x7f08016e; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08016f; + public static final int Widget_AppCompat_RatingBar=0x7f080170; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080171; + public static final int Widget_AppCompat_RatingBar_Small=0x7f080172; + public static final int Widget_AppCompat_SearchView=0x7f080173; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080174; + public static final int Widget_AppCompat_SeekBar=0x7f080175; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080176; + public static final int Widget_AppCompat_Spinner=0x7f080177; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f080178; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080179; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08017a; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08017b; + public static final int Widget_AppCompat_Toolbar=0x7f08017c; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08017d; + public static final int Widget_Compat_NotificationActionContainer=0x7f080187; + public static final int Widget_Compat_NotificationActionText=0x7f080188; + public static final int Widget_Design_AppBarLayout=0x7f080014; + public static final int Widget_Design_BottomNavigationView=0x7f080015; + public static final int Widget_Design_BottomSheet_Modal=0x7f080016; + public static final int Widget_Design_CollapsingToolbar=0x7f080017; + public static final int Widget_Design_CoordinatorLayout=0x7f080018; + public static final int Widget_Design_FloatingActionButton=0x7f080019; + public static final int Widget_Design_NavigationView=0x7f08001a; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; + public static final int Widget_Design_Snackbar=0x7f08001c; + public static final int Widget_Design_TabLayout=0x7f080000; + public static final int Widget_Design_TextInputLayout=0x7f08001d; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetEndWithActions + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_contentInsetStartWithNavigation + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, + 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, + 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, + 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, + 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, + 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, + 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, + 0x7f0100be + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name net.kdt.pojavlaunch:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int ActionBar_elevation = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name net.kdt.pojavlaunch:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int ActionBar_popupTheme = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, + 0x7f010069, 0x7f010079 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_showTitle + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showTitle + */ + public static final int AlertDialog_showTitle = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_android_keyboardNavigationCluster + @see #AppBarLayout_android_touchscreenBlocksFocus + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x0101048f, 0x01010540, 0x7f010009, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + /** +

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int AppBarLayout_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expanded + */ + public static final int AppBarLayout_expanded = 3; + /** Attributes that can be used with a AppBarLayoutStates. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
+ @see #AppBarLayoutStates_state_collapsed + @see #AppBarLayoutStates_state_collapsible + */ + public static final int[] AppBarLayoutStates = { + 0x7f01000a, 0x7f01000b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} + attribute's value can be found in the {@link #AppBarLayoutStates} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible = 1; + /** Attributes that can be used with a AppBarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
+ @see #AppBarLayout_Layout_layout_scrollFlags + @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout = { + 0x7f01000c, 0x7f01000d + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name net.kdt.pojavlaunch:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + @see #AppCompatImageView_tint + @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tint + */ + public static final int AppCompatImageView_tint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:tintMode + */ + public static final int AppCompatImageView_tintMode = 3; + /** Attributes that can be used with a AppCompatSeekBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
+ @see #AppCompatSeekBar_android_thumb + @see #AppCompatSeekBar_tickMark + @see #AppCompatSeekBar_tickMarkTint + @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar = { + 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 + }; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tickMark + */ + public static final int AppCompatSeekBar_tickMark = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} + attribute's value can be found in the {@link #AppCompatSeekBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + /** Attributes that can be used with a AppCompatTextHelper. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
+ @see #AppCompatTextHelper_android_drawableBottom + @see #AppCompatTextHelper_android_drawableEnd + @see #AppCompatTextHelper_android_drawableLeft + @see #AppCompatTextHelper_android_drawableRight + @see #AppCompatTextHelper_android_drawableStart + @see #AppCompatTextHelper_android_drawableTop + @see #AppCompatTextHelper_android_textAppearance + */ + public static final int[] AppCompatTextHelper = { + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** +

This symbol is the offset where the {@link android.R.attr#drawableBottom} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom = 2; + /** +

This symbol is the offset where the {@link android.R.attr#drawableEnd} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd = 6; + /** +

This symbol is the offset where the {@link android.R.attr#drawableLeft} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft = 3; + /** +

This symbol is the offset where the {@link android.R.attr#drawableRight} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight = 4; + /** +

This symbol is the offset where the {@link android.R.attr#drawableStart} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart = 5; + /** +

This symbol is the offset where the {@link android.R.attr#drawableTop} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextHelper} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance = 0; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_autoSizeMaxTextSize + @see #AppCompatTextView_autoSizeMinTextSize + @see #AppCompatTextView_autoSizePresetSizes + @see #AppCompatTextView_autoSizeStepGranularity + @see #AppCompatTextView_autoSizeTextType + @see #AppCompatTextView_fontFamily + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0
uniform1
+ @attr name net.kdt.pojavlaunch:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int AppCompatTextView_fontFamily = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorBackgroundFloating + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorError + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listMenuViewStyle + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSecondary + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearancePopupMenuHeader + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_tooltipForegroundColor + @see #AppCompatTheme_tooltipFrameBackground + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, + 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, + 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, + 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, + 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, + 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, + 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, + 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, + 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, + 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, + 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, + 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, + 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, + 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, + 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, + 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, + 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, + 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, + 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, + 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, + 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, + 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, + 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, + 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, + 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, + 0x7f010101, 0x7f010102, 0x7f010103 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name net.kdt.pojavlaunch:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 50; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 46; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 58; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 96; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 94; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 97; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 55; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 52; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 51; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 103; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 104; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 105; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 106; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 86; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating = 93; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 90; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 88; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 89; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 87; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:colorError + */ + public static final int AppCompatTheme_colorError = 118; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 84; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 85; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 91; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 92; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 44; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 43; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 57; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 56; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 75; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 64; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 63; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 107; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 49; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 65; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 45; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle = 115; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 76; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 70; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 80; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 82; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 81; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 61; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 62; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 108; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 109; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 110; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 111; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 69; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 112; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 53; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 113; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 114; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 77; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 79; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 98; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 68; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 59; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor = 117; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground = 116; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomNavigationView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #BottomNavigationView_elevation + @see #BottomNavigationView_itemBackground + @see #BottomNavigationView_itemIconTint + @see #BottomNavigationView_itemTextColor + @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView = { + 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010077 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int BottomNavigationView_elevation = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int BottomNavigationView_itemBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #BottomNavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int BottomNavigationView_menu = 0; + /** Attributes that can be used with a BottomSheetBehavior_Layout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
+ @see #BottomSheetBehavior_Layout_behavior_hideable + @see #BottomSheetBehavior_Layout_behavior_peekHeight + @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout = { + 0x7f01000e, 0x7f01000f, 0x7f010010 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto-1
+ @attr name net.kdt.pojavlaunch:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} + attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010104 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_scrimAnimationDuration + @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int CollapsingToolbarLayout_title = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 9; + /** Attributes that can be used with a CollapsingToolbarLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
+ @see #CollapsingToolbarLayout_Layout_layout_collapseMode + @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name net.kdt.pojavlaunch:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a ColorStateListItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_android_alpha + @see #ColorStateListItem_android_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f, 0x7f010105 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:alpha + */ + public static final int ColorStateListItem_alpha = 2; + /** +

This symbol is the offset where the {@link android.R.attr#alpha} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha = 1; + /** +

This symbol is the offset where the {@link android.R.attr#color} + attribute's value can be found in the {@link #ColorStateListItem} array. + @attr name android:color + */ + public static final int ColorStateListItem_android_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010106, 0x7f010107 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010022, 0x7f010023 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
+ @see #CoordinatorLayout_Layout_android_layout_gravity + @see #CoordinatorLayout_Layout_layout_anchor + @see #CoordinatorLayout_Layout_layout_anchorGravity + @see #CoordinatorLayout_Layout_layout_behavior + @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + @see #CoordinatorLayout_Layout_layout_insetEdge + @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout = { + 0x010100b3, 0x7f010024, 0x7f010025, 0x7f010026, + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
+ @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
+ @attr name net.kdt.pojavlaunch:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f01002a, 0x7f01002b, 0x7f01002c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010077, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int FloatingActionButton_elevation = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto-1
normal0
mini1
+ @attr name net.kdt.pojavlaunch:fabSize + */ + public static final int FloatingActionButton_fabSize = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 4; + /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
+ @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout = { + 0x7f010032 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} + attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + /** Attributes that can be used with a FontFamily. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
+ @see #FontFamily_fontProviderAuthority + @see #FontFamily_fontProviderCerts + @see #FontFamily_fontProviderFetchStrategy + @see #FontFamily_fontProviderFetchTimeout + @see #FontFamily_fontProviderPackage + @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily = { + 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, + 0x7f010155, 0x7f010156 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
blocking0
async1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} + attribute's value can be found in the {@link #FontFamily} array. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
forever-1
+ @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} + attribute's value can be found in the {@link #FontFamily} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery = 2; + /** Attributes that can be used with a FontFamilyFont. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
+ @see #FontFamilyFont_font + @see #FontFamilyFont_fontStyle + @see #FontFamilyFont_fontWeight + */ + public static final int[] FontFamilyFont = { + 0x7f010157, 0x7f010158, 0x7f010159 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:font + */ + public static final int FontFamilyFont_font = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
italic1
+ @attr name net.kdt.pojavlaunch:fontStyle + */ + public static final int FontFamilyFont_fontStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} + attribute's value can be found in the {@link #FontFamilyFont} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontWeight + */ + public static final int FontFamilyFont_fontWeight = 2; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, + 0x7f010112 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name net.kdt.pojavlaunch:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticModifiers + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_contentDescription + @see #MenuItem_iconTint + @see #MenuItem_iconTintMode + @see #MenuItem_numericModifiers + @see #MenuItem_showAsAction + @see #MenuItem_tooltipText + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:actionLayout + */ + public static final int MenuItem_actionLayout = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:actionViewClass + */ + public static final int MenuItem_actionViewClass = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers = 13; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentDescription + */ + public static final int MenuItem_contentDescription = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconTint + */ + public static final int MenuItem_iconTint = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:iconTintMode + */ + public static final int MenuItem_iconTintMode = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
+ @attr name net.kdt.pojavlaunch:numericModifiers + */ + public static final int MenuItem_numericModifiers = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name net.kdt.pojavlaunch:showAsAction + */ + public static final int MenuItem_showAsAction = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tooltipText + */ + public static final int MenuItem_tooltipText = 20; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + @see #MenuView_subMenuArrow + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, + 0x7f01011e + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subMenuArrow + */ + public static final int MenuView_subMenuArrow = 8; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010034, + 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int NavigationView_elevation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:headerLayout + */ + public static final int NavigationView_headerLayout = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemBackground + */ + public static final int NavigationView_itemBackground = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemIconTint + */ + public static final int NavigationView_itemIconTint = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:itemTextColor + */ + public static final int NavigationView_itemTextColor = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:menu + */ + public static final int NavigationView_menu = 3; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
+ @see #PopupWindow_android_popupAnimationStyle + @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f010120 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecycleListView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
+ @see #RecycleListView_paddingBottomNoButtons + @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView = { + 0x7f010121, 0x7f010122 + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} + attribute's value can be found in the {@link #RecycleListView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle = 1; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
+ @see #RecyclerView_android_descendantFocusability + @see #RecyclerView_android_orientation + @see #RecyclerView_fastScrollEnabled + @see #RecyclerView_fastScrollHorizontalThumbDrawable + @see #RecyclerView_fastScrollHorizontalTrackDrawable + @see #RecyclerView_fastScrollVerticalThumbDrawable + @see #RecyclerView_fastScrollVerticalTrackDrawable + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, + 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008 + }; + /** +

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability = 1; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:layoutManager + */ + public static final int RecyclerView_layoutManager = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:spanCount + */ + public static final int RecyclerView_spanCount = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 5; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f01003a + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name net.kdt.pojavlaunch:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, + 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, + 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, + 0x7f01012f + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01003c, 0x7f010077 + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:elevation + */ + public static final int SnackbarLayout_elevation = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f010078 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_thumbTint + @see #SwitchCompat_thumbTintMode + @see #SwitchCompat_track + @see #SwitchCompat_trackTint + @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010130, + 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, + 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, + 0x7f010139, 0x7f01013a + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:showText + */ + public static final int SwitchCompat_showText = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:splitTrack + */ + public static final int SwitchCompat_splitTrack = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:switchPadding + */ + public static final int SwitchCompat_switchPadding = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:thumbTint + */ + public static final int SwitchCompat_thumbTint = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:track + */ + public static final int SwitchCompat_track = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:trackTint + */ + public static final int SwitchCompat_trackTint = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
+ @attr name net.kdt.pojavlaunch:trackTintMode + */ + public static final int SwitchCompat_trackTintMode = 7; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, + 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, + 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c + }; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name net.kdt.pojavlaunch:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name net.kdt.pojavlaunch:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
+ @see #TextAppearance_android_fontFamily + @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textColorHint + @see #TextAppearance_android_textColorLink + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_fontFamily + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, + 0x7f01008e + }; + /** +

This symbol is the offset where the {@link android.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily = 10; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 7; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 8; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 9; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint = 4; + /** +

This symbol is the offset where the {@link android.R.attr#textColorLink} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink = 5; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} + attribute's value can be found in the {@link #TextAppearance} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name net.kdt.pojavlaunch:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + @see #TextInputLayout_passwordToggleContentDescription + @see #TextInputLayout_passwordToggleDrawable + @see #TextInputLayout_passwordToggleEnabled + @see #TextInputLayout_passwordToggleTint + @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode = 15; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetEndWithActions + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_contentInsetStartWithNavigation + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMargin + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, + 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, + 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, + 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, + 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, + 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, + 0x7f01014b + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top0x30
bottom0x50
+ @attr name net.kdt.pojavlaunch:buttonGravity + */ + public static final int Toolbar_buttonGravity = 21; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 23; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:collapseIcon + */ + public static final int Toolbar_collapseIcon = 22; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions = 10; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation = 9; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:logoDescription + */ + public static final int Toolbar_logoDescription = 26; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 20; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 25; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:navigationIcon + */ + public static final int Toolbar_navigationIcon = 24; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:popupTheme + */ + public static final int Toolbar_popupTheme = 11; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 13; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 28; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargin + */ + public static final int Toolbar_titleMargin = 14; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 18; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 16; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 15; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 17; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleMargins + */ + public static final int Toolbar_titleMargins = 19; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 12; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:titleTextColor + */ + public static final int Toolbar_titleTextColor = 27; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, + 0x7f01014e + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name net.kdt.pojavlaunch:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f01014f, 0x7f010150 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name net.kdt.pojavlaunch:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name net.kdt.pojavlaunch:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} From 8987d065ce837d7eedbcd599b844095627fa5e0f Mon Sep 17 00:00:00 2001 From: khanhduytran0 Date: Mon, 20 Apr 2020 05:19:15 +0700 Subject: [PATCH 06/10] Share EGL context attempt --- .../gen/android/support/v14/preference/R.java | 13342 ---------------- .../gen/android/support/v7/preference/R.java | 13342 ---------------- .../minecraftegl/MinecraftEGLInitializer.java | 17 +- .../injector/AlphaVanillaTweakInjector.java | 1 + 4 files changed, 11 insertions(+), 26691 deletions(-) delete mode 100644 app/build/gen/android/support/v14/preference/R.java delete mode 100644 app/build/gen/android/support/v7/preference/R.java diff --git a/app/build/gen/android/support/v14/preference/R.java b/app/build/gen/android/support/v14/preference/R.java deleted file mode 100644 index d8ef31719..000000000 --- a/app/build/gen/android/support/v14/preference/R.java +++ /dev/null @@ -1,13342 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package android.support.v14.preference; - -public final class R { - public static final class anim { - public static final int abc_fade_in=0x7f040000; - public static final int abc_fade_out=0x7f040001; - public static final int abc_grow_fade_in_from_bottom=0x7f040002; - public static final int abc_popup_enter=0x7f040003; - public static final int abc_popup_exit=0x7f040004; - public static final int abc_shrink_fade_out_from_bottom=0x7f040005; - public static final int abc_slide_in_bottom=0x7f040006; - public static final int abc_slide_in_top=0x7f040007; - public static final int abc_slide_out_bottom=0x7f040008; - public static final int abc_slide_out_top=0x7f040009; - public static final int design_bottom_sheet_slide_in=0x7f04000a; - public static final int design_bottom_sheet_slide_out=0x7f04000b; - public static final int design_snackbar_in=0x7f04000c; - public static final int design_snackbar_out=0x7f04000d; - public static final int tooltip_enter=0x7f04000e; - public static final int tooltip_exit=0x7f04000f; - public static final int translate_left_side=0x7f040010; - public static final int translate_right_side=0x7f040011; - } - public static final class animator { - public static final int design_appbar_state_list_animator=0x7f050000; - } - public static final class array { - public static final int mcl_options=0x7f0e0000; - } - public static final class attr { - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarDivider=0x7f0100a4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarItemBackground=0x7f0100a5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarPopupTheme=0x7f01009e; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- */ - public static final int actionBarSize=0x7f0100a3; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarSplitStyle=0x7f0100a0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarStyle=0x7f01009f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabBarStyle=0x7f01009a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabStyle=0x7f010099; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabTextStyle=0x7f01009b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTheme=0x7f0100a1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarWidgetTheme=0x7f0100a2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionButtonStyle=0x7f0100bf; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionDropDownStyle=0x7f0100bb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionLayout=0x7f010116; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionMenuTextAppearance=0x7f0100a6; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int actionMenuTextColor=0x7f0100a7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeBackground=0x7f0100aa; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseButtonStyle=0x7f0100a9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseDrawable=0x7f0100ac; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCopyDrawable=0x7f0100ae; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCutDrawable=0x7f0100ad; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeFindDrawable=0x7f0100b2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePasteDrawable=0x7f0100af; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePopupWindowStyle=0x7f0100b4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSelectAllDrawable=0x7f0100b0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeShareDrawable=0x7f0100b1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSplitBackground=0x7f0100ab; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeStyle=0x7f0100a8; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeWebSearchDrawable=0x7f0100b3; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionOverflowButtonStyle=0x7f01009c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionOverflowMenuStyle=0x7f01009d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int actionProviderClass=0x7f010118; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int actionViewClass=0x7f010117; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityChooserViewStyle=0x7f0100c7; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int adjustable=0x7f010188; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogButtonGroupStyle=0x7f0100ec; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int alertDialogCenterButtons=0x7f0100ed; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogStyle=0x7f0100eb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogTheme=0x7f0100ee; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerAbove=0x7f010167; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerAfterLastItem=0x7f01016b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerBelow=0x7f010168; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowStacking=0x7f010104; - /**

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int alpha=0x7f010105; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- */ - public static final int alphabeticModifiers=0x7f010113; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int arrowHeadLength=0x7f01010c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int arrowShaftLength=0x7f01010d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoCompleteTextViewStyle=0x7f0100f3; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeMaxTextSize=0x7f01008d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeMinTextSize=0x7f01008c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoSizePresetSizes=0x7f01008b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeStepGranularity=0x7f01008a; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
none0
uniform1
- */ - public static final int autoSizeTextType=0x7f010089; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int background=0x7f010067; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int backgroundSplit=0x7f010069; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int backgroundStacked=0x7f010068; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int backgroundTint=0x7f01014f; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int backgroundTintMode=0x7f010150; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int barLength=0x7f01010e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_autoHide=0x7f010029; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_hideable=0x7f010006; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_overlapTop=0x7f010032; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
auto-1
- */ - public static final int behavior_peekHeight=0x7f010005; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_skipCollapsed=0x7f010007; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int borderWidth=0x7f010027; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int borderlessButtonStyle=0x7f0100c4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int bottomSheetDialogTheme=0x7f010021; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int bottomSheetStyle=0x7f010022; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarButtonStyle=0x7f0100c1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarNegativeButtonStyle=0x7f0100f1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarNeutralButtonStyle=0x7f0100f2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarPositiveButtonStyle=0x7f0100f0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarStyle=0x7f0100c0; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - -
ConstantValueDescription
top0x30
bottom0x50
- */ - public static final int buttonGravity=0x7f010144; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonPanelSideLayout=0x7f01007c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyle=0x7f0100f4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyleSmall=0x7f0100f5; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int buttonTint=0x7f010106; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int buttonTintMode=0x7f010107; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkBoxPreferenceStyle=0x7f010177; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkboxStyle=0x7f0100f6; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkedTextViewStyle=0x7f0100f7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int closeIcon=0x7f010127; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int closeItemLayout=0x7f010079; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int collapseContentDescription=0x7f010146; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int collapseIcon=0x7f010145; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- */ - public static final int collapsedTitleGravity=0x7f010014; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int collapsedTitleTextAppearance=0x7f01000e; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int color=0x7f010108; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorAccent=0x7f0100e3; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorBackgroundFloating=0x7f0100ea; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorButtonNormal=0x7f0100e7; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlActivated=0x7f0100e5; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlHighlight=0x7f0100e6; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlNormal=0x7f0100e4; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int colorError=0x7f010103; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorPrimary=0x7f0100e1; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorPrimaryDark=0x7f0100e2; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorSwitchThumbNormal=0x7f0100e8; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int commitIcon=0x7f01012c; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentDescription=0x7f010119; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetEnd=0x7f010072; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetEndWithActions=0x7f010076; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetLeft=0x7f010073; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetRight=0x7f010074; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetStart=0x7f010071; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetStartWithNavigation=0x7f010075; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentScrim=0x7f01000f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int controlBackground=0x7f0100e9; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int counterEnabled=0x7f010048; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int counterMaxLength=0x7f010049; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int counterOverflowTextAppearance=0x7f01004b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int counterTextAppearance=0x7f01004a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int customNavigationLayout=0x7f01006a; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int defaultQueryHint=0x7f010126; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". - */ - public static final int defaultValue=0x7f010165; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dependency=0x7f010163; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogIcon=0x7f010156; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogLayout=0x7f010159; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogMessage=0x7f010155; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogPreferenceStyle=0x7f010179; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogPreferredPadding=0x7f0100b9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogTheme=0x7f0100b8; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogTitle=0x7f010154; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int disableDependentsState=0x7f010153; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- */ - public static final int displayOptions=0x7f010060; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int divider=0x7f010066; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerHorizontal=0x7f0100c6; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dividerPadding=0x7f010112; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerVertical=0x7f0100c5; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int drawableSize=0x7f01010a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int drawerArrowStyle=0x7f01005b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownListViewStyle=0x7f0100d8; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dropdownListPreferredItemHeight=0x7f0100bc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropdownPreferenceStyle=0x7f01017c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextBackground=0x7f0100cd; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int editTextColor=0x7f0100cc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextPreferenceStyle=0x7f01017a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextStyle=0x7f0100f8; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int elevation=0x7f010077; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int enabled=0x7f010161; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entries=0x7f01015a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entryValues=0x7f01015b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int errorEnabled=0x7f010046; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int errorTextAppearance=0x7f010047; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandActivityOverflowButtonDrawable=0x7f01007b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expanded=0x7f010000; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- */ - public static final int expandedTitleGravity=0x7f010015; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMargin=0x7f010008; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginBottom=0x7f01000c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginEnd=0x7f01000b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginStart=0x7f010009; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginTop=0x7f01000a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandedTitleTextAppearance=0x7f01000d; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
auto-1
normal0
mini1
- */ - public static final int fabSize=0x7f010025; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fastScrollEnabled=0x7f010056; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollHorizontalThumbDrawable=0x7f010059; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollHorizontalTrackDrawable=0x7f01005a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollVerticalThumbDrawable=0x7f010057; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollVerticalTrackDrawable=0x7f010058; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int font=0x7f010193; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontFamily=0x7f01008e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderAuthority=0x7f01018c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fontProviderCerts=0x7f01018f; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
blocking0
async1
- */ - public static final int fontProviderFetchStrategy=0x7f010190; - /**

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
forever-1
- */ - public static final int fontProviderFetchTimeout=0x7f010191; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderPackage=0x7f01018d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderQuery=0x7f01018e; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
normal0
italic1
- */ - public static final int fontStyle=0x7f010192; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontWeight=0x7f010194; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int foregroundInsidePadding=0x7f01002a; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fragment=0x7f01015f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int gapBetweenBars=0x7f01010b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int goIcon=0x7f010128; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int headerLayout=0x7f010030; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int height=0x7f01005c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hideOnContentScroll=0x7f010070; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hintAnimationEnabled=0x7f01004c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hintEnabled=0x7f010045; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int hintTextAppearance=0x7f010044; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeAsUpIndicator=0x7f0100be; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeLayout=0x7f01006b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int icon=0x7f010064; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconSpaceReserved=0x7f01016a; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconTint=0x7f01011b; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int iconTintMode=0x7f01011c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconifiedByDefault=0x7f010124; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imageButtonStyle=0x7f0100ce; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int indeterminateProgressStyle=0x7f01006d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int initialActivityCount=0x7f01007a; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int insetForeground=0x7f010031; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int isLightTheme=0x7f01005d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int itemBackground=0x7f01002e; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemIconTint=0x7f01002c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemPadding=0x7f01006f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int itemTextAppearance=0x7f01002f; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemTextColor=0x7f01002d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int key=0x7f01015c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keylines=0x7f010019; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout=0x7f010123; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layoutManager=0x7f010052; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_anchor=0x7f01001c; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
- */ - public static final int layout_anchorGravity=0x7f01001e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_behavior=0x7f01001b; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
none0
pin1
parallax2
- */ - public static final int layout_collapseMode=0x7f010017; - /**

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_collapseParallaxMultiplier=0x7f010018; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
- */ - public static final int layout_dodgeInsetEdges=0x7f010020; - /**

Must be one of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
- */ - public static final int layout_insetEdge=0x7f01001f; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_keyline=0x7f01001d; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
- */ - public static final int layout_scrollFlags=0x7f010003; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_scrollInterpolator=0x7f010004; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listChoiceBackgroundIndicator=0x7f0100e0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listDividerAlertDialog=0x7f0100ba; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listItemLayout=0x7f010080; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listLayout=0x7f01007d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listMenuViewStyle=0x7f010100; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listPopupWindowStyle=0x7f0100d9; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeight=0x7f0100d3; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeightLarge=0x7f0100d5; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeightSmall=0x7f0100d4; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemPaddingLeft=0x7f0100d6; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemPaddingRight=0x7f0100d7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int logo=0x7f010065; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int logoDescription=0x7f010149; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxActionInlineWidth=0x7f010033; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxButtonHeight=0x7f010143; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxHeight=0x7f01016e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxWidth=0x7f01016d; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int measureWithLargestChild=0x7f010110; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int menu=0x7f01002b; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int min=0x7f010186; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int multiChoiceItemLayout=0x7f01007e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int navigationContentDescription=0x7f010148; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int navigationIcon=0x7f010147; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- */ - public static final int navigationMode=0x7f01005f; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int negativeButtonText=0x7f010158; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- */ - public static final int numericModifiers=0x7f010114; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int order=0x7f01015e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int orderingFromXml=0x7f01016c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int overlapAnchor=0x7f01011f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingBottomNoButtons=0x7f010121; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingEnd=0x7f01014d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingStart=0x7f01014c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingTopNoTitle=0x7f010122; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int panelBackground=0x7f0100dd; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int panelMenuListTheme=0x7f0100df; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int panelMenuListWidth=0x7f0100de; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleContentDescription=0x7f01004f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int passwordToggleDrawable=0x7f01004e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleEnabled=0x7f01004d; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleTint=0x7f010050; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int passwordToggleTintMode=0x7f010051; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int persistent=0x7f010164; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupMenuStyle=0x7f0100ca; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupTheme=0x7f010078; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupWindowStyle=0x7f0100cb; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int positiveButtonText=0x7f010157; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceActivityStyle=0x7f010171; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceCategoryStyle=0x7f010174; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentCompatStyle=0x7f010173; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentListStyle=0x7f010181; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int preferenceFragmentPaddingSide=0x7f010182; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentStyle=0x7f010172; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceHeaderPanelStyle=0x7f01017f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceInformationStyle=0x7f010176; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceLayoutChild=0x7f01017d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceListStyle=0x7f010180; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferencePanelStyle=0x7f01017e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceScreenStyle=0x7f010170; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceStyle=0x7f010175; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceTheme=0x7f01016f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int preserveIconSpacing=0x7f01011d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int pressedTranslationZ=0x7f010026; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int progressBarPadding=0x7f01006e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyle=0x7f01006c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int queryBackground=0x7f01012e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int queryHint=0x7f010125; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int radioButtonStyle=0x7f0100f9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyle=0x7f0100fa; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleIndicator=0x7f0100fb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleSmall=0x7f0100fc; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int reverseLayout=0x7f010054; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ringtonePreferenceStyle=0x7f01017b; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int rippleColor=0x7f010024; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int scrimAnimationDuration=0x7f010013; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int scrimVisibleHeightTrigger=0x7f010012; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchHintIcon=0x7f01012a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchIcon=0x7f010129; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchViewStyle=0x7f0100d2; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int seekBarIncrement=0x7f010187; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int seekBarPreferenceStyle=0x7f010185; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int seekBarStyle=0x7f0100fd; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int selectable=0x7f010162; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectableItemBackground=0x7f0100c2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectableItemBackgroundBorderless=0x7f0100c3; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int shouldDisableView=0x7f010166; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
- */ - public static final int showAsAction=0x7f010115; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- */ - public static final int showDividers=0x7f010111; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showSeekBarValue=0x7f010189; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showText=0x7f01013a; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showTitle=0x7f010081; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int singleChoiceItemLayout=0x7f01007f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int singleLineTitle=0x7f010169; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int spanCount=0x7f010053; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int spinBars=0x7f010109; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerDropDownItemStyle=0x7f0100bd; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerStyle=0x7f0100fe; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int splitTrack=0x7f010139; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int srcCompat=0x7f010082; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int stackFromEnd=0x7f010055; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_above_anchor=0x7f010120; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_collapsed=0x7f010001; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_collapsible=0x7f010002; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int statusBarBackground=0x7f01001a; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int statusBarScrim=0x7f010010; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subMenuArrow=0x7f01011e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int submitBackground=0x7f01012f; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int subtitle=0x7f010061; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subtitleTextAppearance=0x7f01013c; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int subtitleTextColor=0x7f01014b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subtitleTextStyle=0x7f010063; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int suggestionRowLayout=0x7f01012d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summary=0x7f01015d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summaryOff=0x7f010152; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summaryOn=0x7f010151; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchMinWidth=0x7f010137; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchPadding=0x7f010138; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchPreferenceCompatStyle=0x7f010184; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchPreferenceStyle=0x7f010183; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchStyle=0x7f0100ff; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchTextAppearance=0x7f010136; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchTextOff=0x7f01018b; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchTextOn=0x7f01018a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabBackground=0x7f010037; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabContentStart=0x7f010036; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
fill0
center1
- */ - public static final int tabGravity=0x7f010039; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabIndicatorColor=0x7f010034; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabIndicatorHeight=0x7f010035; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabMaxWidth=0x7f01003b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabMinWidth=0x7f01003a; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
scrollable0
fixed1
- */ - public static final int tabMode=0x7f010038; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPadding=0x7f010043; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingBottom=0x7f010042; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingEnd=0x7f010041; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingStart=0x7f01003f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingTop=0x7f010040; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabSelectedTextColor=0x7f01003e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabTextAppearance=0x7f01003c; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabTextColor=0x7f01003d; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - */ - public static final int textAllCaps=0x7f010088; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceLargePopupMenu=0x7f0100b5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItem=0x7f0100da; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItemSecondary=0x7f0100db; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItemSmall=0x7f0100dc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearancePopupMenuHeader=0x7f0100b7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultTitle=0x7f0100cf; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSmallPopupMenu=0x7f0100b6; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorAlertDialogListItem=0x7f0100ef; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorError=0x7f010023; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorSearchUrl=0x7f0100d1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int theme=0x7f01014e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thickness=0x7f01010f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thumbTextPadding=0x7f010135; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thumbTint=0x7f010130; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int thumbTintMode=0x7f010131; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tickMark=0x7f010085; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tickMarkTint=0x7f010086; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int tickMarkTintMode=0x7f010087; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tint=0x7f010083; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int tintMode=0x7f010084; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int title=0x7f01005e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleEnabled=0x7f010016; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMargin=0x7f01013d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginBottom=0x7f010141; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginEnd=0x7f01013f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginStart=0x7f01013e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginTop=0x7f010140; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMargins=0x7f010142; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int titleTextAppearance=0x7f01013b; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleTextColor=0x7f01014a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int titleTextStyle=0x7f010062; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarId=0x7f010011; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarNavigationButtonStyle=0x7f0100c9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarStyle=0x7f0100c8; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int tooltipForegroundColor=0x7f010102; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tooltipFrameBackground=0x7f010101; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tooltipText=0x7f01011a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int track=0x7f010132; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int trackTint=0x7f010133; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int trackTintMode=0x7f010134; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int useCompatPadding=0x7f010028; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int voiceIcon=0x7f01012b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int widgetLayout=0x7f010160; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionBar=0x7f01008f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionBarOverlay=0x7f010091; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionModeOverlay=0x7f010092; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedHeightMajor=0x7f010096; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedHeightMinor=0x7f010094; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedWidthMajor=0x7f010093; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedWidthMinor=0x7f010095; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowMinWidthMajor=0x7f010097; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowMinWidthMinor=0x7f010098; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowNoTitle=0x7f010090; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int yesNoPreferenceStyle=0x7f010178; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f0d0000; - public static final int abc_allow_stacked_button_bar=0x7f0d0001; - public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004; - } - public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0048; - public static final int abc_background_cache_hint_selector_material_light=0x7f0b0049; - public static final int abc_btn_colored_borderless_text_material=0x7f0b004a; - public static final int abc_btn_colored_text_material=0x7f0b004b; - public static final int abc_color_highlight_material=0x7f0b004c; - public static final int abc_hint_foreground_material_dark=0x7f0b004d; - public static final int abc_hint_foreground_material_light=0x7f0b004e; - public static final int abc_input_method_navigation_guard=0x7f0b000a; - public static final int abc_primary_text_disable_only_material_dark=0x7f0b004f; - public static final int abc_primary_text_disable_only_material_light=0x7f0b0050; - public static final int abc_primary_text_material_dark=0x7f0b0051; - public static final int abc_primary_text_material_light=0x7f0b0052; - public static final int abc_search_url_text=0x7f0b0053; - public static final int abc_search_url_text_normal=0x7f0b000b; - public static final int abc_search_url_text_pressed=0x7f0b000c; - public static final int abc_search_url_text_selected=0x7f0b000d; - public static final int abc_secondary_text_material_dark=0x7f0b0054; - public static final int abc_secondary_text_material_light=0x7f0b0055; - public static final int abc_tint_btn_checkable=0x7f0b0056; - public static final int abc_tint_default=0x7f0b0057; - public static final int abc_tint_edittext=0x7f0b0058; - public static final int abc_tint_seek_thumb=0x7f0b0059; - public static final int abc_tint_spinner=0x7f0b005a; - public static final int abc_tint_switch_track=0x7f0b005b; - public static final int accent_material_dark=0x7f0b000e; - public static final int accent_material_light=0x7f0b000f; - public static final int background_floating_material_dark=0x7f0b0010; - public static final int background_floating_material_light=0x7f0b0011; - public static final int background_material_dark=0x7f0b0012; - public static final int background_material_light=0x7f0b0013; - public static final int bright_foreground_disabled_material_dark=0x7f0b0014; - public static final int bright_foreground_disabled_material_light=0x7f0b0015; - public static final int bright_foreground_inverse_material_dark=0x7f0b0016; - public static final int bright_foreground_inverse_material_light=0x7f0b0017; - public static final int bright_foreground_material_dark=0x7f0b0018; - public static final int bright_foreground_material_light=0x7f0b0019; - public static final int button_material_dark=0x7f0b001a; - public static final int button_material_light=0x7f0b001b; - public static final int design_bottom_navigation_shadow_color=0x7f0b0000; - public static final int design_error=0x7f0b005c; - public static final int design_fab_shadow_end_color=0x7f0b0001; - public static final int design_fab_shadow_mid_color=0x7f0b0002; - public static final int design_fab_shadow_start_color=0x7f0b0003; - public static final int design_fab_stroke_end_inner_color=0x7f0b0004; - public static final int design_fab_stroke_end_outer_color=0x7f0b0005; - public static final int design_fab_stroke_top_inner_color=0x7f0b0006; - public static final int design_fab_stroke_top_outer_color=0x7f0b0007; - public static final int design_snackbar_background_color=0x7f0b0008; - public static final int design_tint_password_toggle=0x7f0b005d; - public static final int dim_foreground_disabled_material_dark=0x7f0b001c; - public static final int dim_foreground_disabled_material_light=0x7f0b001d; - public static final int dim_foreground_material_dark=0x7f0b001e; - public static final int dim_foreground_material_light=0x7f0b001f; - public static final int error_color_material=0x7f0b0020; - public static final int foreground_material_dark=0x7f0b0021; - public static final int foreground_material_light=0x7f0b0022; - public static final int highlighted_text_material_dark=0x7f0b0023; - public static final int highlighted_text_material_light=0x7f0b0024; - public static final int material_blue_grey_800=0x7f0b0025; - public static final int material_blue_grey_900=0x7f0b0026; - public static final int material_blue_grey_950=0x7f0b0027; - public static final int material_deep_teal_200=0x7f0b0028; - public static final int material_deep_teal_500=0x7f0b0029; - public static final int material_grey_100=0x7f0b002a; - public static final int material_grey_300=0x7f0b002b; - public static final int material_grey_50=0x7f0b002c; - public static final int material_grey_600=0x7f0b002d; - public static final int material_grey_800=0x7f0b002e; - public static final int material_grey_850=0x7f0b002f; - public static final int material_grey_900=0x7f0b0030; - public static final int notification_action_color_filter=0x7f0b0046; - public static final int notification_icon_bg_color=0x7f0b0047; - public static final int notification_material_background_media_default_color=0x7f0b0045; - public static final int preference_fallback_accent_color=0x7f0b0009; - public static final int primary_dark_material_dark=0x7f0b0031; - public static final int primary_dark_material_light=0x7f0b0032; - public static final int primary_material_dark=0x7f0b0033; - public static final int primary_material_light=0x7f0b0034; - public static final int primary_text_default_material_dark=0x7f0b0035; - public static final int primary_text_default_material_light=0x7f0b0036; - public static final int primary_text_disabled_material_dark=0x7f0b0037; - public static final int primary_text_disabled_material_light=0x7f0b0038; - public static final int ripple_material_dark=0x7f0b0039; - public static final int ripple_material_light=0x7f0b003a; - public static final int secondary_text_default_material_dark=0x7f0b003b; - public static final int secondary_text_default_material_light=0x7f0b003c; - public static final int secondary_text_disabled_material_dark=0x7f0b003d; - public static final int secondary_text_disabled_material_light=0x7f0b003e; - public static final int switch_thumb_disabled_material_dark=0x7f0b003f; - public static final int switch_thumb_disabled_material_light=0x7f0b0040; - public static final int switch_thumb_material_dark=0x7f0b005e; - public static final int switch_thumb_material_light=0x7f0b005f; - public static final int switch_thumb_normal_material_dark=0x7f0b0041; - public static final int switch_thumb_normal_material_light=0x7f0b0042; - public static final int tooltip_background_dark=0x7f0b0043; - public static final int tooltip_background_light=0x7f0b0044; - } - public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f090038; - public static final int abc_action_bar_content_inset_with_nav=0x7f090039; - public static final int abc_action_bar_default_height_material=0x7f09002d; - public static final int abc_action_bar_default_padding_end_material=0x7f09003a; - public static final int abc_action_bar_default_padding_start_material=0x7f09003b; - public static final int abc_action_bar_elevation_material=0x7f09003d; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f09003e; - public static final int abc_action_bar_overflow_padding_end_material=0x7f09003f; - public static final int abc_action_bar_overflow_padding_start_material=0x7f090040; - public static final int abc_action_bar_progress_bar_size=0x7f09002e; - public static final int abc_action_bar_stacked_max_height=0x7f090041; - public static final int abc_action_bar_stacked_tab_max_width=0x7f090042; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f090043; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f090044; - public static final int abc_action_button_min_height_material=0x7f090045; - public static final int abc_action_button_min_width_material=0x7f090046; - public static final int abc_action_button_min_width_overflow_material=0x7f090047; - public static final int abc_alert_dialog_button_bar_height=0x7f09002c; - public static final int abc_button_inset_horizontal_material=0x7f090048; - public static final int abc_button_inset_vertical_material=0x7f090049; - public static final int abc_button_padding_horizontal_material=0x7f09004a; - public static final int abc_button_padding_vertical_material=0x7f09004b; - public static final int abc_cascading_menus_min_smallest_width=0x7f09004c; - public static final int abc_config_prefDialogWidth=0x7f090031; - public static final int abc_control_corner_material=0x7f09004d; - public static final int abc_control_inset_material=0x7f09004e; - public static final int abc_control_padding_material=0x7f09004f; - public static final int abc_dialog_fixed_height_major=0x7f090032; - public static final int abc_dialog_fixed_height_minor=0x7f090033; - public static final int abc_dialog_fixed_width_major=0x7f090034; - public static final int abc_dialog_fixed_width_minor=0x7f090035; - public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f090050; - public static final int abc_dialog_list_padding_top_no_title=0x7f090051; - public static final int abc_dialog_min_width_major=0x7f090036; - public static final int abc_dialog_min_width_minor=0x7f090037; - public static final int abc_dialog_padding_material=0x7f090052; - public static final int abc_dialog_padding_top_material=0x7f090053; - public static final int abc_dialog_title_divider_material=0x7f090054; - public static final int abc_disabled_alpha_material_dark=0x7f090055; - public static final int abc_disabled_alpha_material_light=0x7f090056; - public static final int abc_dropdownitem_icon_width=0x7f090057; - public static final int abc_dropdownitem_text_padding_left=0x7f090058; - public static final int abc_dropdownitem_text_padding_right=0x7f090059; - public static final int abc_edit_text_inset_bottom_material=0x7f09005a; - public static final int abc_edit_text_inset_horizontal_material=0x7f09005b; - public static final int abc_edit_text_inset_top_material=0x7f09005c; - public static final int abc_floating_window_z=0x7f09005d; - public static final int abc_list_item_padding_horizontal_material=0x7f09005e; - public static final int abc_panel_menu_list_width=0x7f09005f; - public static final int abc_progress_bar_height_material=0x7f090060; - public static final int abc_search_view_preferred_height=0x7f090061; - public static final int abc_search_view_preferred_width=0x7f090062; - public static final int abc_seekbar_track_background_height_material=0x7f090063; - public static final int abc_seekbar_track_progress_height_material=0x7f090064; - public static final int abc_select_dialog_padding_start_material=0x7f090065; - public static final int abc_switch_padding=0x7f09003c; - public static final int abc_text_size_body_1_material=0x7f090066; - public static final int abc_text_size_body_2_material=0x7f090067; - public static final int abc_text_size_button_material=0x7f090068; - public static final int abc_text_size_caption_material=0x7f090069; - public static final int abc_text_size_display_1_material=0x7f09006a; - public static final int abc_text_size_display_2_material=0x7f09006b; - public static final int abc_text_size_display_3_material=0x7f09006c; - public static final int abc_text_size_display_4_material=0x7f09006d; - public static final int abc_text_size_headline_material=0x7f09006e; - public static final int abc_text_size_large_material=0x7f09006f; - public static final int abc_text_size_medium_material=0x7f090070; - public static final int abc_text_size_menu_header_material=0x7f090071; - public static final int abc_text_size_menu_material=0x7f090072; - public static final int abc_text_size_small_material=0x7f090073; - public static final int abc_text_size_subhead_material=0x7f090074; - public static final int abc_text_size_subtitle_material_toolbar=0x7f09002f; - public static final int abc_text_size_title_material=0x7f090075; - public static final int abc_text_size_title_material_toolbar=0x7f090030; - /** Default screen margins, per the Android Design guidelines. - */ - public static final int activity_horizontal_margin=0x7f09009f; - public static final int activity_vertical_margin=0x7f0900a0; - public static final int compat_button_inset_horizontal_material=0x7f09008f; - public static final int compat_button_inset_vertical_material=0x7f090090; - public static final int compat_button_padding_horizontal_material=0x7f090091; - public static final int compat_button_padding_vertical_material=0x7f090092; - public static final int compat_control_corner_material=0x7f090093; - public static final int design_appbar_elevation=0x7f090008; - public static final int design_bottom_navigation_active_item_max_width=0x7f090009; - public static final int design_bottom_navigation_active_text_size=0x7f09000a; - public static final int design_bottom_navigation_elevation=0x7f09000b; - public static final int design_bottom_navigation_height=0x7f09000c; - public static final int design_bottom_navigation_item_max_width=0x7f09000d; - public static final int design_bottom_navigation_item_min_width=0x7f09000e; - public static final int design_bottom_navigation_margin=0x7f09000f; - public static final int design_bottom_navigation_shadow_height=0x7f090010; - public static final int design_bottom_navigation_text_size=0x7f090011; - public static final int design_bottom_sheet_modal_elevation=0x7f090012; - public static final int design_bottom_sheet_peek_height_min=0x7f090013; - public static final int design_fab_border_width=0x7f090014; - public static final int design_fab_elevation=0x7f090015; - public static final int design_fab_image_size=0x7f090016; - public static final int design_fab_size_mini=0x7f090017; - public static final int design_fab_size_normal=0x7f090018; - public static final int design_fab_translation_z_pressed=0x7f090019; - public static final int design_navigation_elevation=0x7f09001a; - public static final int design_navigation_icon_padding=0x7f09001b; - public static final int design_navigation_icon_size=0x7f09001c; - public static final int design_navigation_max_width=0x7f090000; - public static final int design_navigation_padding_bottom=0x7f09001d; - public static final int design_navigation_separator_vertical_padding=0x7f09001e; - public static final int design_snackbar_action_inline_max_width=0x7f090001; - public static final int design_snackbar_background_corner_radius=0x7f090002; - public static final int design_snackbar_elevation=0x7f09001f; - public static final int design_snackbar_extra_spacing_horizontal=0x7f090003; - public static final int design_snackbar_max_width=0x7f090004; - public static final int design_snackbar_min_width=0x7f090005; - public static final int design_snackbar_padding_horizontal=0x7f090020; - public static final int design_snackbar_padding_vertical=0x7f090021; - public static final int design_snackbar_padding_vertical_2lines=0x7f090006; - public static final int design_snackbar_text_size=0x7f090022; - public static final int design_tab_max_width=0x7f090023; - public static final int design_tab_scrollable_min_width=0x7f090007; - public static final int design_tab_text_size=0x7f090024; - public static final int design_tab_text_size_2line=0x7f090025; - public static final int disabled_alpha_material_dark=0x7f090076; - public static final int disabled_alpha_material_light=0x7f090077; - public static final int empty_icon_height=0x7f0900a9; - /** Main Activity components - */ - public static final int empty_icon_width=0x7f0900a8; - public static final int fastscroll_default_thickness=0x7f090026; - public static final int fastscroll_margin=0x7f090027; - public static final int fastscroll_minimum_range=0x7f090028; - public static final int highlight_alpha_material_colored=0x7f090078; - public static final int highlight_alpha_material_dark=0x7f090079; - public static final int highlight_alpha_material_light=0x7f09007a; - public static final int hint_alpha_material_dark=0x7f09007b; - public static final int hint_alpha_material_light=0x7f09007c; - public static final int hint_pressed_alpha_material_dark=0x7f09007d; - public static final int hint_pressed_alpha_material_light=0x7f09007e; - public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090029; - public static final int item_touch_helper_swipe_escape_max_velocity=0x7f09002a; - public static final int item_touch_helper_swipe_escape_velocity=0x7f09002b; - public static final int navigation_header_height=0x7f0900aa; - public static final int navigation_item_height=0x7f0900ab; - public static final int navigation_item_icon_size=0x7f0900ac; - public static final int notification_action_icon_size=0x7f090094; - public static final int notification_action_text_size=0x7f090095; - public static final int notification_big_circle_margin=0x7f090096; - public static final int notification_content_margin_start=0x7f09008c; - public static final int notification_large_icon_height=0x7f090097; - public static final int notification_large_icon_width=0x7f090098; - public static final int notification_main_column_padding_top=0x7f09008d; - public static final int notification_media_narrow_margin=0x7f09008e; - public static final int notification_right_icon_size=0x7f090099; - public static final int notification_right_side_padding_top=0x7f09008b; - public static final int notification_small_icon_background_padding=0x7f09009a; - public static final int notification_small_icon_size_as_large=0x7f09009b; - public static final int notification_subtext_size=0x7f09009c; - public static final int notification_top_pad=0x7f09009d; - public static final int notification_top_pad_large_text=0x7f09009e; - public static final int padding_extra_extra_large=0x7f0900a7; - public static final int padding_extra_large=0x7f0900a6; - public static final int padding_large=0x7f0900a5; - public static final int padding_medium=0x7f0900a4; - public static final int padding_small=0x7f0900a3; - /** Padding - */ - public static final int padding_tiny=0x7f0900a1; - public static final int padding_tiny_plus_one=0x7f0900a2; - public static final int preference_icon_minWidth=0x7f090087; - public static final int preference_seekbar_padding_end=0x7f090088; - public static final int preference_seekbar_padding_start=0x7f090089; - public static final int preference_seekbar_value_width=0x7f09008a; - public static final int tooltip_corner_radius=0x7f09007f; - public static final int tooltip_horizontal_padding=0x7f090080; - public static final int tooltip_margin=0x7f090081; - public static final int tooltip_precise_anchor_extra_offset=0x7f090082; - public static final int tooltip_precise_anchor_threshold=0x7f090083; - public static final int tooltip_vertical_padding=0x7f090084; - public static final int tooltip_y_offset_non_touch=0x7f090085; - public static final int tooltip_y_offset_touch=0x7f090086; - } - public static final class drawable { - public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; - public static final int abc_action_bar_item_background_material=0x7f020001; - public static final int abc_btn_borderless_material=0x7f020002; - public static final int abc_btn_check_material=0x7f020003; - public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; - public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; - public static final int abc_btn_colored_material=0x7f020006; - public static final int abc_btn_default_mtrl_shape=0x7f020007; - public static final int abc_btn_radio_material=0x7f020008; - public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; - public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; - public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; - public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; - public static final int abc_cab_background_internal_bg=0x7f02000d; - public static final int abc_cab_background_top_material=0x7f02000e; - public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; - public static final int abc_control_background_material=0x7f020010; - public static final int abc_dialog_material_background=0x7f020011; - public static final int abc_edit_text_material=0x7f020012; - public static final int abc_ic_ab_back_material=0x7f020013; - public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; - public static final int abc_ic_clear_material=0x7f020015; - public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; - public static final int abc_ic_go_search_api_material=0x7f020017; - public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; - public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; - public static final int abc_ic_menu_overflow_material=0x7f02001a; - public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; - public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; - public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; - public static final int abc_ic_search_api_material=0x7f02001e; - public static final int abc_ic_star_black_16dp=0x7f02001f; - public static final int abc_ic_star_black_36dp=0x7f020020; - public static final int abc_ic_star_black_48dp=0x7f020021; - public static final int abc_ic_star_half_black_16dp=0x7f020022; - public static final int abc_ic_star_half_black_36dp=0x7f020023; - public static final int abc_ic_star_half_black_48dp=0x7f020024; - public static final int abc_ic_voice_search_api_material=0x7f020025; - public static final int abc_item_background_holo_dark=0x7f020026; - public static final int abc_item_background_holo_light=0x7f020027; - public static final int abc_list_divider_mtrl_alpha=0x7f020028; - public static final int abc_list_focused_holo=0x7f020029; - public static final int abc_list_longpressed_holo=0x7f02002a; - public static final int abc_list_pressed_holo_dark=0x7f02002b; - public static final int abc_list_pressed_holo_light=0x7f02002c; - public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; - public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; - public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; - public static final int abc_list_selector_disabled_holo_light=0x7f020030; - public static final int abc_list_selector_holo_dark=0x7f020031; - public static final int abc_list_selector_holo_light=0x7f020032; - public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; - public static final int abc_popup_background_mtrl_mult=0x7f020034; - public static final int abc_ratingbar_indicator_material=0x7f020035; - public static final int abc_ratingbar_material=0x7f020036; - public static final int abc_ratingbar_small_material=0x7f020037; - public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; - public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; - public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; - public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; - public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; - public static final int abc_seekbar_thumb_material=0x7f02003d; - public static final int abc_seekbar_tick_mark_material=0x7f02003e; - public static final int abc_seekbar_track_material=0x7f02003f; - public static final int abc_spinner_mtrl_am_alpha=0x7f020040; - public static final int abc_spinner_textfield_background_material=0x7f020041; - public static final int abc_switch_thumb_material=0x7f020042; - public static final int abc_switch_track_mtrl_alpha=0x7f020043; - public static final int abc_tab_indicator_material=0x7f020044; - public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; - public static final int abc_text_cursor_material=0x7f020046; - public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; - public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; - public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; - public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; - public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; - public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; - public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; - public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; - public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; - public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; - public static final int abc_textfield_search_material=0x7f020051; - public static final int abc_vector_test=0x7f020052; - public static final int avd_hide_password=0x7f020053; - public static final int avd_show_password=0x7f020054; - public static final int bg_wool_dark=0x7f020055; - public static final int bitmap_wool_dark=0x7f020056; - public static final int border_edittext=0x7f020057; - public static final int control_button=0x7f020058; - public static final int control_button_normal=0x7f020059; - public static final int control_button_pressed=0x7f02005a; - public static final int design_bottom_navigation_item_background=0x7f02005b; - public static final int design_fab_background=0x7f02005c; - public static final int design_ic_visibility=0x7f02005d; - public static final int design_ic_visibility_off=0x7f02005e; - public static final int design_password_eye=0x7f02005f; - public static final int design_snackbar_background=0x7f020060; - public static final int ic_close=0x7f020061; - public static final int ic_file=0x7f020062; - public static final int ic_folder=0x7f020063; - public static final int ic_launcher=0x7f020064; - public static final int ic_minimize=0x7f020065; - public static final int logo=0x7f020066; - public static final int mcbtn_normal=0x7f020067; - public static final int mcbtn_pressed=0x7f020068; - public static final int mcbutton=0x7f020069; - public static final int menu_hamburger=0x7f02006a; - public static final int mojang_logo=0x7f02006b; - public static final int mouse_pointer=0x7f02006c; - public static final int navigation_empty_icon=0x7f02006d; - public static final int notification_action_background=0x7f02006e; - public static final int notification_bg=0x7f02006f; - public static final int notification_bg_low=0x7f020070; - public static final int notification_bg_low_normal=0x7f020071; - public static final int notification_bg_low_pressed=0x7f020072; - public static final int notification_bg_normal=0x7f020073; - public static final int notification_bg_normal_pressed=0x7f020074; - public static final int notification_icon_background=0x7f020075; - public static final int notification_template_icon_bg=0x7f02007c; - public static final int notification_template_icon_low_bg=0x7f02007d; - public static final int notification_tile_bg=0x7f020076; - public static final int notify_panel_notification_icon_bg=0x7f020077; - public static final int preference_list_divider_material=0x7f020078; - public static final int toggle_log=0x7f020079; - public static final int tooltip_frame_dark=0x7f02007a; - public static final int tooltip_frame_light=0x7f02007b; - } - public static final class id { - public static final int ALT=0x7f07004a; - public static final int CTRL=0x7f07004b; - public static final int FUNCTION=0x7f07004c; - public static final int META=0x7f07004d; - public static final int SHIFT=0x7f07004e; - public static final int SYM=0x7f07004f; - public static final int action0=0x7f0700d8; - public static final int action_bar=0x7f07007b; - public static final int action_bar_activity_content=0x7f07000e; - public static final int action_bar_container=0x7f07007a; - public static final int action_bar_root=0x7f070076; - public static final int action_bar_spinner=0x7f07000f; - public static final int action_bar_subtitle=0x7f07005a; - public static final int action_bar_title=0x7f070059; - public static final int action_container=0x7f0700d5; - public static final int action_context_bar=0x7f07007c; - public static final int action_divider=0x7f0700dc; - public static final int action_image=0x7f0700d6; - public static final int action_menu_divider=0x7f070010; - public static final int action_menu_presenter=0x7f070011; - public static final int action_mode_bar=0x7f070078; - public static final int action_mode_bar_stub=0x7f070077; - public static final int action_mode_close_button=0x7f07005b; - public static final int action_text=0x7f0700d7; - public static final int actions=0x7f0700e5; - public static final int activity_chooser_view_content=0x7f07005c; - public static final int add=0x7f070045; - public static final int alertTitle=0x7f07006f; - public static final int all=0x7f070033; - public static final int always=0x7f070050; - public static final int async=0x7f070055; - public static final int auto=0x7f070021; - public static final int beginning=0x7f070048; - public static final int blocking=0x7f070056; - public static final int bottom=0x7f070022; - public static final int bottombar_author_logo=0x7f07008b; - public static final int bottombar_version_view=0x7f07008a; - public static final int buttonPanel=0x7f070062; - public static final int cancel_action=0x7f0700d9; - public static final int center=0x7f070023; - public static final int center_horizontal=0x7f070024; - public static final int center_vertical=0x7f070025; - public static final int checkbox=0x7f070072; - public static final int chronometer=0x7f0700e1; - public static final int clip_horizontal=0x7f07002f; - public static final int clip_vertical=0x7f070030; - public static final int collapseActionView=0x7f070051; - public static final int container=0x7f070094; - public static final int contentPanel=0x7f070065; - public static final int content_frame=0x7f0700b9; - public static final int content_log_close_button=0x7f0700d0; - public static final int content_log_layout=0x7f0700cf; - public static final int content_log_scroll=0x7f0700d2; - public static final int content_log_toggle_log=0x7f0700d1; - public static final int content_text_debug=0x7f0700d3; - public static final int control_debug=0x7f0700be; - public static final int control_down=0x7f0700c4; - public static final int control_inventory=0x7f0700cc; - public static final int control_jump=0x7f0700c8; - public static final int control_keyboard=0x7f0700c0; - public static final int control_left=0x7f0700c6; - public static final int control_listplayers=0x7f0700c3; - public static final int control_mouse_toggle=0x7f0700cd; - public static final int control_primary=0x7f0700c9; - public static final int control_right=0x7f0700c7; - public static final int control_secondary=0x7f0700ca; - public static final int control_shift=0x7f0700cb; - public static final int control_talk=0x7f0700bf; - public static final int control_thirdperson=0x7f0700c1; - public static final int control_togglecontrol=0x7f0700ce; - public static final int control_up=0x7f0700c5; - public static final int control_zoom=0x7f0700c2; - public static final int controlsetting_checkbox_hidden=0x7f070091; - public static final int controlsetting_edit_name=0x7f07008f; - public static final int controlsetting_spinner_lwjglkeycode=0x7f070090; - public static final int coordinator=0x7f070095; - public static final int custom=0x7f07006c; - public static final int customPanel=0x7f07006b; - public static final int customctrl_controllayout=0x7f07008d; - public static final int customctrl_drawerlayout=0x7f07008c; - public static final int customctrl_navigation_view=0x7f07008e; - public static final int decor_content_parent=0x7f070079; - public static final int default_activity_button=0x7f07005f; - public static final int design_bottom_sheet=0x7f070097; - public static final int design_menu_item_action_area=0x7f07009e; - public static final int design_menu_item_action_area_stub=0x7f07009d; - public static final int design_menu_item_text=0x7f07009c; - public static final int design_navigation_view=0x7f07009b; - public static final int disableHome=0x7f07003f; - public static final int edit_query=0x7f07007d; - public static final int end=0x7f070026; - public static final int end_padder=0x7f0700e7; - public static final int enterAlways=0x7f07001c; - public static final int enterAlwaysCollapsed=0x7f07001d; - public static final int exitUntilCollapsed=0x7f07001e; - public static final int expand_activities_button=0x7f07005d; - public static final int expanded_menu=0x7f070071; - public static final int fill=0x7f070031; - public static final int fill_horizontal=0x7f070032; - public static final int fill_vertical=0x7f070027; - public static final int fixed=0x7f070036; - public static final int forever=0x7f070057; - public static final int ghost_view=0x7f070000; - public static final int home=0x7f070012; - public static final int homeAsUp=0x7f070040; - public static final int icon=0x7f070061; - public static final int icon_frame=0x7f0700e8; - public static final int icon_group=0x7f0700e6; - public static final int ifRoom=0x7f070052; - public static final int image=0x7f07005e; - public static final int info=0x7f0700e2; - public static final int italic=0x7f070058; - public static final int item_touch_helper_previous_elevation=0x7f07000d; - public static final int lMTVVer=0x7f0700ab; - public static final int largeLabel=0x7f070093; - public static final int launcherAccEmail=0x7f0700a0; - public static final int launcherAccOffSwitch=0x7f0700a3; - public static final int launcherAccPassword=0x7f0700a1; - public static final int launcherAccProgress=0x7f0700a4; - public static final int launcherAccRememberSwitch=0x7f0700a2; - public static final int launcherAccUsername=0x7f0700b4; - public static final int launcherMainExitbtns=0x7f0700b1; - public static final int launcherMainLeftLayout=0x7f0700aa; - public static final int launcherMainPlayButton=0x7f0700ad; - public static final int launcherMainRightLayout=0x7f0700ae; - public static final int launcherMainSelectVersion=0x7f0700ac; - public static final int launcherMainUsernameView=0x7f0700af; - public static final int launcherMainVersionView=0x7f0700b0; - public static final int launchermainFragmentTabView=0x7f0700a5; - public static final int launchermainTabLayout=0x7f0700a6; - public static final int launchermainTabPager=0x7f0700a7; - public static final int launcherupdateLogView=0x7f0700b3; - public static final int launcherupdateProgressBar=0x7f0700b2; - public static final int left=0x7f070028; - public static final int line1=0x7f070017; - public static final int line3=0x7f070018; - public static final int list=0x7f0700ea; - public static final int listMode=0x7f07003d; - public static final int list_item=0x7f070060; - public static final int lmaintabconsoleLogCrashTextView=0x7f0700b6; - public static final int lmaintabconsoleLogTextView=0x7f0700b5; - public static final int lmaintabnewsNewsView=0x7f0700b7; - public static final int main_drawer_options=0x7f0700b8; - public static final int main_game_render_view=0x7f0700bb; - public static final int main_log_behind_GL=0x7f0700ba; - public static final int main_mouse_pointer=0x7f0700bd; - public static final int main_navigation_view=0x7f0700d4; - public static final int main_touchpad=0x7f0700bc; - public static final int masked=0x7f070102; - public static final int media_actions=0x7f0700db; - public static final int menu_ctrl_add=0x7f070104; - public static final int menu_ctrl_edit=0x7f070105; - public static final int menu_ctrl_load=0x7f070103; - public static final int menu_ctrl_remove=0x7f070106; - public static final int message=0x7f0700fa; - public static final int middle=0x7f070049; - public static final int mini=0x7f070034; - public static final int multiply=0x7f070038; - public static final int nav_customkey=0x7f07010a; - public static final int nav_debug=0x7f070109; - public static final int nav_forceclose=0x7f070107; - public static final int nav_viewlog=0x7f070108; - public static final int navigation_header_container=0x7f07009a; - public static final int never=0x7f070053; - public static final int none=0x7f07002c; - public static final int normal=0x7f070035; - public static final int notification_background=0x7f0700e4; - public static final int notification_main_column=0x7f0700de; - public static final int notification_main_column_container=0x7f0700dd; - public static final int parallax=0x7f07002d; - public static final int parentPanel=0x7f070064; - public static final int parent_matrix=0x7f070001; - public static final int pin=0x7f07002e; - public static final int progressDownloadBar=0x7f0700a8; - public static final int progressDownloadText=0x7f0700a9; - public static final int progress_circular=0x7f070013; - public static final int progress_horizontal=0x7f070014; - public static final int radio=0x7f070074; - public static final int right=0x7f070029; - public static final int right_icon=0x7f0700e3; - public static final int right_side=0x7f0700df; - public static final int save_image_matrix=0x7f070002; - public static final int save_non_transition_alpha=0x7f070003; - public static final int save_scale_type=0x7f070004; - public static final int screen=0x7f070039; - public static final int scroll=0x7f07001f; - public static final int scrollIndicatorDown=0x7f07006a; - public static final int scrollIndicatorUp=0x7f070066; - public static final int scrollView=0x7f070067; - public static final int scrollable=0x7f070037; - public static final int search_badge=0x7f07007f; - public static final int search_bar=0x7f07007e; - public static final int search_button=0x7f070080; - public static final int search_close_btn=0x7f070085; - public static final int search_edit_frame=0x7f070081; - public static final int search_go_btn=0x7f070087; - public static final int search_mag_icon=0x7f070082; - public static final int search_plate=0x7f070083; - public static final int search_src_text=0x7f070084; - public static final int search_voice_btn=0x7f070088; - public static final int seekbar=0x7f0700eb; - public static final int seekbar_value=0x7f0700ec; - public static final int select_dialog_listview=0x7f070089; - public static final int setting_progressseek_control=0x7f0700f1; - public static final int setting_progressseek_maxdxref=0x7f0700ef; - public static final int settings_checkbox_vertype_oldalpha=0x7f0700f6; - public static final int settings_checkbox_vertype_oldbeta=0x7f0700f7; - public static final int settings_checkbox_vertype_release=0x7f0700f4; - public static final int settings_checkbox_vertype_snapshot=0x7f0700f5; - public static final int settings_seekbar_controlsize=0x7f0700f0; - public static final int settings_seekbar_setmaxdxref=0x7f0700ee; - public static final int settings_switch_enablefreeform=0x7f0700f2; - public static final int settings_switch_forgetoptifpath=0x7f0700f3; - public static final int shortcut=0x7f070073; - public static final int showCustom=0x7f070041; - public static final int showHome=0x7f070042; - public static final int showTitle=0x7f070043; - public static final int smallLabel=0x7f070092; - public static final int snackbar_action=0x7f070099; - public static final int snackbar_text=0x7f070098; - public static final int snap=0x7f070020; - public static final int spacer=0x7f070063; - public static final int spinner=0x7f0700e9; - public static final int split_action_bar=0x7f070015; - public static final int src_atop=0x7f07003a; - public static final int src_in=0x7f07003b; - public static final int src_over=0x7f07003c; - public static final int start=0x7f07002a; - public static final int startscreenLinearLayout1=0x7f0700f8; - public static final int startscreenProgress=0x7f0700f9; - public static final int status_bar_latest_event_content=0x7f0700da; - public static final int submenuarrow=0x7f070075; - public static final int submit_area=0x7f070086; - public static final int switchWidget=0x7f0700ed; - public static final int tabMode=0x7f07003e; - public static final int text=0x7f070019; - public static final int text2=0x7f07001a; - public static final int textSpacerNoButtons=0x7f070069; - public static final int textSpacerNoTitle=0x7f070068; - public static final int text_input_password_toggle=0x7f07009f; - public static final int textinput_counter=0x7f07000a; - public static final int textinput_error=0x7f07000b; - public static final int time=0x7f0700e0; - public static final int title=0x7f07001b; - public static final int titleDividerNoCustom=0x7f070070; - public static final int title_template=0x7f07006e; - public static final int top=0x7f07002b; - public static final int topPanel=0x7f07006d; - public static final int topbar_earth_icon=0x7f0700fb; - public static final int topbar_help_text=0x7f0700fd; - public static final int topbar_language_text=0x7f0700fc; - public static final int topbar_logo=0x7f0700fe; - public static final int topbar_navmenu_icon=0x7f0700ff; - public static final int topbar_undertop_view=0x7f070100; - public static final int touch_outside=0x7f070096; - public static final int transition_current_scene=0x7f070005; - public static final int transition_layout_save=0x7f070006; - public static final int transition_position=0x7f070007; - public static final int transition_scene_layoutid_cache=0x7f070008; - public static final int transition_transform=0x7f070009; - public static final int uniform=0x7f070046; - public static final int up=0x7f070016; - public static final int useLogo=0x7f070044; - public static final int ver_clone=0x7f07010b; - public static final int ver_edit=0x7f07010c; - public static final int ver_remove=0x7f07010d; - public static final int view_offset_helper=0x7f07000c; - public static final int visible=0x7f070101; - public static final int withText=0x7f070054; - public static final int wrap_content=0x7f070047; - } - public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f0a0005; - public static final int abc_config_activityShortDur=0x7f0a0006; - public static final int app_bar_elevation_anim_duration=0x7f0a0001; - public static final int bottom_sheet_slide_duration=0x7f0a0002; - public static final int cancel_button_image_alpha=0x7f0a0007; - public static final int config_tooltipAnimTime=0x7f0a0008; - public static final int design_snackbar_text_max_lines=0x7f0a0000; - public static final int hide_password_duration=0x7f0a0003; - public static final int show_password_duration=0x7f0a0004; - public static final int status_bar_notification_info_maxnum=0x7f0a0009; - } - public static final class layout { - public static final int abc_action_bar_title_item=0x7f030000; - public static final int abc_action_bar_up_container=0x7f030001; - public static final int abc_action_bar_view_list_nav_layout=0x7f030002; - public static final int abc_action_menu_item_layout=0x7f030003; - public static final int abc_action_menu_layout=0x7f030004; - public static final int abc_action_mode_bar=0x7f030005; - public static final int abc_action_mode_close_item_material=0x7f030006; - public static final int abc_activity_chooser_view=0x7f030007; - public static final int abc_activity_chooser_view_list_item=0x7f030008; - public static final int abc_alert_dialog_button_bar_material=0x7f030009; - public static final int abc_alert_dialog_material=0x7f03000a; - public static final int abc_alert_dialog_title_material=0x7f03000b; - public static final int abc_dialog_title_material=0x7f03000c; - public static final int abc_expanded_menu_layout=0x7f03000d; - public static final int abc_list_menu_item_checkbox=0x7f03000e; - public static final int abc_list_menu_item_icon=0x7f03000f; - public static final int abc_list_menu_item_layout=0x7f030010; - public static final int abc_list_menu_item_radio=0x7f030011; - public static final int abc_popup_menu_header_item_layout=0x7f030012; - public static final int abc_popup_menu_item_layout=0x7f030013; - public static final int abc_screen_content_include=0x7f030014; - public static final int abc_screen_simple=0x7f030015; - public static final int abc_screen_simple_overlay_action_mode=0x7f030016; - public static final int abc_screen_toolbar=0x7f030017; - public static final int abc_search_dropdown_item_icons_2line=0x7f030018; - public static final int abc_search_view=0x7f030019; - public static final int abc_select_dialog_material=0x7f03001a; - public static final int bottom_bar=0x7f03001b; - public static final int control_mapping=0x7f03001c; - public static final int control_setting=0x7f03001d; - public static final int design_bottom_navigation_item=0x7f03001e; - public static final int design_bottom_sheet_dialog=0x7f03001f; - public static final int design_layout_snackbar=0x7f030020; - public static final int design_layout_snackbar_include=0x7f030021; - public static final int design_layout_tab_icon=0x7f030022; - public static final int design_layout_tab_text=0x7f030023; - public static final int design_menu_item_action_area=0x7f030024; - public static final int design_navigation_item=0x7f030025; - public static final int design_navigation_item_header=0x7f030026; - public static final int design_navigation_item_separator=0x7f030027; - public static final int design_navigation_item_subheader=0x7f030028; - public static final int design_navigation_menu=0x7f030029; - public static final int design_navigation_menu_item=0x7f03002a; - public static final int design_text_input_password_icon=0x7f03002b; - public static final int launcher_login=0x7f03002c; - public static final int launcher_main=0x7f03002d; - public static final int launcher_update=0x7f03002e; - public static final int launcher_user=0x7f03002f; - public static final int lmaintab_consolelog=0x7f030030; - public static final int lmaintab_crashlog=0x7f030031; - public static final int lmaintab_news=0x7f030032; - public static final int main=0x7f030033; - public static final int notification_action=0x7f030034; - public static final int notification_action_tombstone=0x7f030035; - public static final int notification_media_action=0x7f030036; - public static final int notification_media_cancel_action=0x7f030037; - public static final int notification_template_big_media=0x7f030038; - public static final int notification_template_big_media_custom=0x7f030039; - public static final int notification_template_big_media_narrow=0x7f03003a; - public static final int notification_template_big_media_narrow_custom=0x7f03003b; - public static final int notification_template_custom_big=0x7f03003c; - public static final int notification_template_icon_group=0x7f03003d; - public static final int notification_template_lines_media=0x7f03003e; - public static final int notification_template_media=0x7f03003f; - public static final int notification_template_media_custom=0x7f030040; - public static final int notification_template_part_chronometer=0x7f030041; - public static final int notification_template_part_time=0x7f030042; - public static final int preference=0x7f030043; - public static final int preference_category=0x7f030044; - public static final int preference_category_material=0x7f030045; - public static final int preference_dialog_edittext=0x7f030046; - public static final int preference_dropdown=0x7f030047; - public static final int preference_dropdown_material=0x7f030048; - public static final int preference_information=0x7f030049; - public static final int preference_information_material=0x7f03004a; - public static final int preference_list_fragment=0x7f03004b; - public static final int preference_material=0x7f03004c; - public static final int preference_recyclerview=0x7f03004d; - public static final int preference_widget_checkbox=0x7f03004e; - public static final int preference_widget_seekbar=0x7f03004f; - public static final int preference_widget_seekbar_material=0x7f030050; - public static final int preference_widget_switch=0x7f030051; - public static final int preference_widget_switch_compat=0x7f030052; - public static final int select_dialog_item_material=0x7f030053; - public static final int select_dialog_multichoice_material=0x7f030054; - public static final int select_dialog_singlechoice_material=0x7f030055; - public static final int settings=0x7f030056; - public static final int start_screen=0x7f030057; - public static final int support_simple_spinner_dropdown_item=0x7f030058; - public static final int tooltip=0x7f030059; - public static final int top_bar=0x7f03005a; - } - public static final class menu { - public static final int menu_customctrl=0x7f0f0000; - public static final int menu_runopt=0x7f0f0001; - public static final int menu_versionopt=0x7f0f0002; - } - public static final class string { - public static final int abc_action_bar_home_description=0x7f0c0008; - public static final int abc_action_bar_home_description_format=0x7f0c0009; - public static final int abc_action_bar_home_subtitle_description_format=0x7f0c000a; - public static final int abc_action_bar_up_description=0x7f0c000b; - public static final int abc_action_menu_overflow_description=0x7f0c000c; - public static final int abc_action_mode_done=0x7f0c000d; - public static final int abc_activity_chooser_view_see_all=0x7f0c000e; - public static final int abc_activitychooserview_choose_application=0x7f0c000f; - public static final int abc_capital_off=0x7f0c0010; - public static final int abc_capital_on=0x7f0c0011; - public static final int abc_font_family_body_1_material=0x7f0c001d; - public static final int abc_font_family_body_2_material=0x7f0c001e; - public static final int abc_font_family_button_material=0x7f0c001f; - public static final int abc_font_family_caption_material=0x7f0c0020; - public static final int abc_font_family_display_1_material=0x7f0c0021; - public static final int abc_font_family_display_2_material=0x7f0c0022; - public static final int abc_font_family_display_3_material=0x7f0c0023; - public static final int abc_font_family_display_4_material=0x7f0c0024; - public static final int abc_font_family_headline_material=0x7f0c0025; - public static final int abc_font_family_menu_material=0x7f0c0026; - public static final int abc_font_family_subhead_material=0x7f0c0027; - public static final int abc_font_family_title_material=0x7f0c0028; - public static final int abc_search_hint=0x7f0c0012; - public static final int abc_searchview_description_clear=0x7f0c0013; - public static final int abc_searchview_description_query=0x7f0c0014; - public static final int abc_searchview_description_search=0x7f0c0015; - public static final int abc_searchview_description_submit=0x7f0c0016; - public static final int abc_searchview_description_voice=0x7f0c0017; - public static final int abc_shareactionprovider_share_with=0x7f0c0018; - public static final int abc_shareactionprovider_share_with_application=0x7f0c0019; - public static final int abc_toolbar_collapse_description=0x7f0c001a; - /** Action bar part - */ - public static final int actionbar_help=0x7f0c002d; - public static final int alerttitle_installmod=0x7f0c0047; - public static final int alerttitle_installoptifine=0x7f0c0048; - /** AlertDialog title - */ - public static final int alerttitle_selectkeymap=0x7f0c0046; - /** App name part - */ - public static final int app_name=0x7f0c002b; - public static final int app_short_name=0x7f0c002c; - public static final int appbar_scrolling_view_behavior=0x7f0c0000; - public static final int bottom_sheet_behavior=0x7f0c0001; - public static final int character_counter_pattern=0x7f0c0002; - public static final int control_adebug=0x7f0c0098; - public static final int control_chat=0x7f0c0086; - public static final int control_customkey=0x7f0c0099; - public static final int control_debug=0x7f0c0087; - public static final int control_down=0x7f0c0090; - /** MainActivity: Menu advanced controls - */ - public static final int control_forceclose=0x7f0c0096; - public static final int control_inventory=0x7f0c008c; - public static final int control_jump=0x7f0c0091; - public static final int control_keyboard=0x7f0c0085; - public static final int control_left=0x7f0c008e; - public static final int control_listplayers=0x7f0c0093; - public static final int control_more3=0x7f0c009a; - public static final int control_more4=0x7f0c009b; - public static final int control_mouseoff=0x7f0c0094; - public static final int control_mouseon=0x7f0c0095; - public static final int control_primary=0x7f0c0089; - public static final int control_right=0x7f0c008f; - public static final int control_secondary=0x7f0c008a; - public static final int control_shift=0x7f0c008b; - public static final int control_thirdperson=0x7f0c0092; - public static final int control_toggle=0x7f0c0084; - public static final int control_up=0x7f0c008d; - public static final int control_viewout=0x7f0c0097; - public static final int control_zoom=0x7f0c0088; - /** MainActivity: Control buttons - */ - public static final int controls=0x7f0c0083; - public static final int customctrl_hidden=0x7f0c009d; - public static final int customctrl_keyname=0x7f0c009c; - /** Error messages - */ - public static final int error_checklog=0x7f0c0049; - public static final int error_convert_client=0x7f0c004e; - public static final int error_convert_lib=0x7f0c004d; - public static final int error_load_version=0x7f0c004c; - public static final int error_no_version=0x7f0c004b; - public static final int error_show_less=0x7f0c0050; - public static final int error_show_more=0x7f0c004f; - public static final int error_title=0x7f0c004a; - /** Global strings - */ - public static final int global_add=0x7f0c0077; - public static final int global_edit=0x7f0c0078; - public static final int global_error_field_empty=0x7f0c007d; - public static final int global_load=0x7f0c0079; - public static final int global_name=0x7f0c007a; - public static final int global_remove=0x7f0c007b; - public static final int global_save=0x7f0c007c; - public static final int hint_control_mapping=0x7f0c003e; - /** Hint - */ - public static final int hint_select_account=0x7f0c003d; - /** Languages list part - */ - public static final int language_name=0x7f0c002e; - /** Logging output - */ - public static final int log_title=0x7f0c002f; - public static final int login_error_exist_username=0x7f0c003b; - public static final int login_error_short_username=0x7f0c003a; - public static final int login_offline_alert_skip=0x7f0c0039; - public static final int login_offline_switch=0x7f0c0037; - public static final int login_offline_warning_1=0x7f0c0038; - public static final int login_online_create_account=0x7f0c0036; - public static final int login_online_login_label=0x7f0c0035; - public static final int login_online_password_hint=0x7f0c0032; - public static final int login_online_password_question=0x7f0c0033; - public static final int login_online_remember=0x7f0c0034; - /** Login strings - */ - public static final int login_online_username_hint=0x7f0c0030; - public static final int login_online_username_question=0x7f0c0031; - public static final int login_select_account=0x7f0c003c; - public static final int mcl_launch_cleancache=0x7f0c0058; - public static final int mcl_launch_convert_client=0x7f0c005d; - public static final int mcl_launch_convert_lib=0x7f0c005c; - public static final int mcl_launch_download_assets=0x7f0c005f; - public static final int mcl_launch_download_client=0x7f0c005b; - public static final int mcl_launch_download_lib=0x7f0c005a; - public static final int mcl_launch_downloading=0x7f0c0059; - public static final int mcl_launch_patch_client=0x7f0c005e; - public static final int mcl_option_about=0x7f0c0066; - public static final int mcl_option_checkupdate=0x7f0c0063; - public static final int mcl_option_customcontrol=0x7f0c0064; - public static final int mcl_option_modmgr=0x7f0c0061; - public static final int mcl_option_optifineinstall=0x7f0c0062; - public static final int mcl_option_settings=0x7f0c0065; - public static final int mcl_options=0x7f0c0060; - public static final int mcl_setting_category_general=0x7f0c0070; - public static final int mcl_setting_category_veroption=0x7f0c0071; - public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0c006f; - public static final int mcl_setting_subtitle_freeform=0x7f0c006a; - public static final int mcl_setting_subtitle_longpresstrigger=0x7f0c006c; - public static final int mcl_setting_subtitle_setmaxdxref=0x7f0c0068; - public static final int mcl_setting_title_controlsize=0x7f0c006d; - public static final int mcl_setting_title_forgetoptifpath=0x7f0c006e; - public static final int mcl_setting_title_freeform=0x7f0c0069; - public static final int mcl_setting_title_longpresstrigger=0x7f0c006b; - public static final int mcl_setting_title_setmaxdxref=0x7f0c0067; - public static final int mcl_setting_veroption_oldalpha=0x7f0c0074; - public static final int mcl_setting_veroption_oldbeta=0x7f0c0075; - public static final int mcl_setting_veroption_release=0x7f0c0072; - public static final int mcl_setting_veroption_snapshot=0x7f0c0073; - public static final int mcl_tab_console=0x7f0c0055; - public static final int mcl_tab_crash=0x7f0c0056; - /** - Exit - - MCLauncherActivity: Tabs - */ - public static final int mcl_tab_news=0x7f0c0054; - public static final int mcl_version_clone=0x7f0c0076; - /** MCLauncherActivity: Strings - */ - public static final int mcl_version_msg=0x7f0c0057; - public static final int mcn_exit_call=0x7f0c007f; - public static final int mcn_exit_confirm=0x7f0c0082; - public static final int mcn_exit_crash=0x7f0c0080; - public static final int mcn_exit_errcrash=0x7f0c0081; - /** - -%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + - " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + - //"© 2019 Khanh Duy Tran\n" + - "Using libraries:\n" + - " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + - //" • Boardwalk memory manager (not used now).\n" + - " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + - " • dx: tool to convert.\n" + - " • Java AWT Implementation includes:\n" + - " - Boardwalk's makeshift.\n" + - " - Apache Harmony AWT Framework.\n" + - " - OpenJDK 7 codes implementation.\n" + - " - Developer code implement (copy text, open browser,...)\n" + - "\n" + - "* Notes:\n" + - " - This app is currently BETA, it will not be stable.\n" + - //"* This app will unstable on Android 7.0 or higher devices.\n" + - " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + - " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") - - - MainActivity: strings - */ - public static final int mcn_exit_title=0x7f0c007e; - public static final int password_toggle_content_description=0x7f0c0003; - public static final int path_password_eye=0x7f0c0004; - public static final int path_password_eye_mask_strike_through=0x7f0c0005; - public static final int path_password_eye_mask_visible=0x7f0c0006; - public static final int path_password_strike_through=0x7f0c0007; - public static final int search_menu_title=0x7f0c001b; - public static final int status_bar_notification_info_overflow=0x7f0c001c; - public static final int toast_login_error=0x7f0c0052; - public static final int toast_optifine_success=0x7f0c0053; - /** Toast messages - */ - public static final int toast_permission_denied=0x7f0c0051; - /** Update part (unused now) - */ - public static final int update_console=0x7f0c009e; - public static final int v7_preference_off=0x7f0c0029; - public static final int v7_preference_on=0x7f0c002a; - public static final int warning_action_exit=0x7f0c0044; - public static final int warning_action_install=0x7f0c0042; - public static final int warning_action_tryanyway=0x7f0c0043; - public static final int warning_msg=0x7f0c0040; - public static final int warning_noshowagain=0x7f0c0041; - public static final int warning_remove_account=0x7f0c0045; - /** Warning - */ - public static final int warning_title=0x7f0c003f; - } - public static final class style { - public static final int AlertDialog_AppCompat=0x7f0800cd; - public static final int AlertDialog_AppCompat_Light=0x7f0800ce; - public static final int AlertTheme=0x7f0801ab; - public static final int Animation_AppCompat_Dialog=0x7f0800cf; - public static final int Animation_AppCompat_DropDownUp=0x7f0800d0; - public static final int Animation_AppCompat_Tooltip=0x7f0800d1; - public static final int Animation_Design_BottomSheetDialog=0x7f080004; - public static final int AppTheme=0x7f0801a9; - public static final int Base_AlertDialog_AppCompat=0x7f0800d2; - public static final int Base_AlertDialog_AppCompat_Light=0x7f0800d3; - public static final int Base_Animation_AppCompat_Dialog=0x7f0800d4; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800d5; - public static final int Base_Animation_AppCompat_Tooltip=0x7f0800d6; - public static final int Base_DialogWindowTitle_AppCompat=0x7f0800d7; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800d8; - public static final int Base_TextAppearance_AppCompat=0x7f080069; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f08006a; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f08006b; - public static final int Base_TextAppearance_AppCompat_Button=0x7f080057; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f08006c; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f08006d; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f08006e; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f08006f; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f080070; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f080071; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08003b; - public static final int Base_TextAppearance_AppCompat_Large=0x7f080072; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08003c; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080073; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080074; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f080075; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08003d; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f080076; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800d9; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080077; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080078; - public static final int Base_TextAppearance_AppCompat_Small=0x7f080079; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08003e; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f08007a; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08003f; - public static final int Base_TextAppearance_AppCompat_Title=0x7f08007b; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080040; - public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800da; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800be; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08007c; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08007d; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08007e; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08007f; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080080; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080081; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080082; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800c5; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800c6; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800bf; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800db; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080083; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080084; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080085; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080086; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080087; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800dc; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080088; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080089; - public static final int Base_Theme_AppCompat=0x7f08008a; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800dd; - public static final int Base_Theme_AppCompat_Dialog=0x7f080041; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080042; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800de; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080043; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080031; - public static final int Base_Theme_AppCompat_Light=0x7f08008b; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800df; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080044; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080045; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800e0; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080046; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080032; - public static final int Base_ThemeOverlay_AppCompat=0x7f0800e1; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800e2; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800e3; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800e4; - public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080047; - public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080048; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800e5; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080049; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08004a; - public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f08004b; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080053; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f080054; - public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; - public static final int Base_V21_Theme_AppCompat=0x7f08008c; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08008d; - public static final int Base_V21_Theme_AppCompat_Light=0x7f08008e; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08008f; - public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f080090; - public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; - public static final int Base_V22_Theme_AppCompat=0x7f0800bc; - public static final int Base_V22_Theme_AppCompat_Light=0x7f0800bd; - public static final int Base_V23_Theme_AppCompat=0x7f0800c0; - public static final int Base_V23_Theme_AppCompat_Light=0x7f0800c1; - public static final int Base_V26_Theme_AppCompat=0x7f0800c9; - public static final int Base_V26_Theme_AppCompat_Light=0x7f0800ca; - public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800cb; - public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; - public static final int Base_V7_Theme_AppCompat=0x7f0800e6; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800e7; - public static final int Base_V7_Theme_AppCompat_Light=0x7f0800e8; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800e9; - public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800ea; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800eb; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ec; - public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800ed; - public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ee; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ef; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080091; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080092; - public static final int Base_Widget_AppCompat_ActionButton=0x7f080093; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080094; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080095; - public static final int Base_Widget_AppCompat_ActionMode=0x7f0800f1; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800f2; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080055; - public static final int Base_Widget_AppCompat_Button=0x7f080096; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080097; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080098; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800f3; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800c2; - public static final int Base_Widget_AppCompat_Button_Small=0x7f080099; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f08009a; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800f4; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08009b; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08009c; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800f5; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080030; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800f6; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08009d; - public static final int Base_Widget_AppCompat_EditText=0x7f080056; - public static final int Base_Widget_AppCompat_ImageButton=0x7f08009e; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800f7; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800f8; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800f9; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08009f; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0800a0; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0800a1; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0800a2; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0800a3; - public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800fa; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0800a4; - public static final int Base_Widget_AppCompat_ListView=0x7f0800a5; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0800a6; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0800a7; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f0800a8; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0800a9; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800fb; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f08004c; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08004d; - public static final int Base_Widget_AppCompat_RatingBar=0x7f0800aa; - public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800c3; - public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800c4; - public static final int Base_Widget_AppCompat_SearchView=0x7f0800fc; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800fd; - public static final int Base_Widget_AppCompat_SeekBar=0x7f0800ab; - public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800fe; - public static final int Base_Widget_AppCompat_Spinner=0x7f0800ac; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080033; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0800ad; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0800cc; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0800ae; - public static final int Base_Widget_Design_AppBarLayout=0x7f080002; - public static final int Base_Widget_Design_TabLayout=0x7f080006; - public static final int MenuDialog=0x7f0801ac; - public static final int MenuDialogAnimation=0x7f0801ad; - public static final int Platform_AppCompat=0x7f08004e; - public static final int Platform_AppCompat_Light=0x7f08004f; - public static final int Platform_ThemeOverlay_AppCompat=0x7f0800af; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0800b0; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0800b1; - public static final int Platform_V11_AppCompat=0x7f080050; - public static final int Platform_V11_AppCompat_Light=0x7f080051; - public static final int Platform_V14_AppCompat=0x7f080058; - public static final int Platform_V14_AppCompat_Light=0x7f080059; - public static final int Platform_V21_AppCompat=0x7f0800b2; - public static final int Platform_V21_AppCompat_Light=0x7f0800b3; - public static final int Platform_V25_AppCompat=0x7f0800c7; - public static final int Platform_V25_AppCompat_Light=0x7f0800c8; - public static final int Platform_Widget_AppCompat_Spinner=0x7f080052; - public static final int Preference=0x7f080192; - public static final int Preference_Category=0x7f080193; - public static final int Preference_Category_Material=0x7f08001f; - public static final int Preference_CheckBoxPreference=0x7f080194; - public static final int Preference_CheckBoxPreference_Material=0x7f080020; - public static final int Preference_DialogPreference=0x7f080195; - public static final int Preference_DialogPreference_EditTextPreference=0x7f080196; - public static final int Preference_DialogPreference_EditTextPreference_Material=0x7f080021; - public static final int Preference_DialogPreference_Material=0x7f080022; - public static final int Preference_DropDown=0x7f080197; - public static final int Preference_DropDown_Material=0x7f080023; - public static final int Preference_Information=0x7f080198; - public static final int Preference_Information_Material=0x7f080024; - public static final int Preference_Material=0x7f080025; - public static final int Preference_PreferenceScreen=0x7f080199; - public static final int Preference_PreferenceScreen_Material=0x7f080026; - public static final int Preference_SeekBarPreference=0x7f08019a; - public static final int Preference_SeekBarPreference_Material=0x7f080027; - public static final int Preference_SwitchPreference=0x7f080028; - public static final int Preference_SwitchPreference_Material=0x7f080029; - public static final int Preference_SwitchPreferenceCompat=0x7f08019b; - public static final int Preference_SwitchPreferenceCompat_Material=0x7f08002a; - public static final int PreferenceFragment=0x7f080190; - public static final int PreferenceFragment_Material=0x7f08002b; - public static final int PreferenceFragmentList=0x7f080191; - public static final int PreferenceFragmentList_Material=0x7f08001e; - public static final int PreferenceThemeOverlay=0x7f08019c; - public static final int PreferenceThemeOverlay_v14=0x7f08002c; - public static final int PreferenceThemeOverlay_v14_Material=0x7f08002d; - public static final int Preference_TextAppearanceMaterialBody2=0x7f08002e; - public static final int Preference_TextAppearanceMaterialSubhead=0x7f08002f; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08005b; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08005c; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08005d; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08005e; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08005f; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080060; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080061; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080062; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080063; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080064; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080065; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080066; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080067; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080068; - public static final int RunTheme=0x7f0801aa; - public static final int TextAppearance_AppCompat=0x7f0800ff; - public static final int TextAppearance_AppCompat_Body1=0x7f080100; - public static final int TextAppearance_AppCompat_Body2=0x7f080101; - public static final int TextAppearance_AppCompat_Button=0x7f080102; - public static final int TextAppearance_AppCompat_Caption=0x7f080103; - public static final int TextAppearance_AppCompat_Display1=0x7f080104; - public static final int TextAppearance_AppCompat_Display2=0x7f080105; - public static final int TextAppearance_AppCompat_Display3=0x7f080106; - public static final int TextAppearance_AppCompat_Display4=0x7f080107; - public static final int TextAppearance_AppCompat_Headline=0x7f080108; - public static final int TextAppearance_AppCompat_Inverse=0x7f080109; - public static final int TextAppearance_AppCompat_Large=0x7f08010a; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f08010b; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f08010c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f08010d; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08010e; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08010f; - public static final int TextAppearance_AppCompat_Medium=0x7f080110; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f080111; - public static final int TextAppearance_AppCompat_Menu=0x7f080112; - public static final int TextAppearance_AppCompat_Notification=0x7f0800b4; - public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800b5; - public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800b6; - public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080113; - public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080114; - public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800b7; - public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800b8; - public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800b9; - public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800ba; - public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800bb; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080115; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080116; - public static final int TextAppearance_AppCompat_Small=0x7f080117; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080118; - public static final int TextAppearance_AppCompat_Subhead=0x7f080119; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f08011a; - public static final int TextAppearance_AppCompat_Title=0x7f08011b; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08011c; - public static final int TextAppearance_AppCompat_Tooltip=0x7f08005a; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08011d; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08011e; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08011f; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080120; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080121; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080122; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080123; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080124; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080125; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f080126; - public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080127; - public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080128; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080129; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f08012a; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f08012b; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08012c; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08012d; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08012e; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08012f; - public static final int TextAppearance_Compat_Notification=0x7f0801a2; - public static final int TextAppearance_Compat_Notification_Info=0x7f0801a3; - public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08019d; - public static final int TextAppearance_Compat_Notification_Line2=0x7f0801a8; - public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0801a1; - public static final int TextAppearance_Compat_Notification_Media=0x7f08019e; - public static final int TextAppearance_Compat_Notification_Time=0x7f0801a4; - public static final int TextAppearance_Compat_Notification_Time_Media=0x7f08019f; - public static final int TextAppearance_Compat_Notification_Title=0x7f0801a5; - public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0801a0; - public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; - public static final int TextAppearance_Design_Counter=0x7f080008; - public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; - public static final int TextAppearance_Design_Error=0x7f08000a; - public static final int TextAppearance_Design_Hint=0x7f08000b; - public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; - public static final int TextAppearance_Design_Tab=0x7f08000d; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080130; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080131; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080132; - public static final int Theme_AppCompat=0x7f080133; - public static final int Theme_AppCompat_CompactMenu=0x7f080134; - public static final int Theme_AppCompat_DayNight=0x7f080034; - public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080035; - public static final int Theme_AppCompat_DayNight_Dialog=0x7f080036; - public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080037; - public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080038; - public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080039; - public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08003a; - public static final int Theme_AppCompat_Dialog=0x7f080135; - public static final int Theme_AppCompat_Dialog_Alert=0x7f080136; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080137; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f080138; - public static final int Theme_AppCompat_Light=0x7f080139; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f08013a; - public static final int Theme_AppCompat_Light_Dialog=0x7f08013b; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08013c; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08013d; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08013e; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f08013f; - public static final int Theme_AppCompat_NoActionBar=0x7f080140; - public static final int Theme_Design=0x7f08000e; - public static final int Theme_Design_BottomSheetDialog=0x7f08000f; - public static final int Theme_Design_Light=0x7f080010; - public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; - public static final int Theme_Design_Light_NoActionBar=0x7f080012; - public static final int Theme_Design_NoActionBar=0x7f080013; - public static final int ThemeOverlay_AppCompat=0x7f080141; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080142; - public static final int ThemeOverlay_AppCompat_Dark=0x7f080143; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080144; - public static final int ThemeOverlay_AppCompat_Dialog=0x7f080145; - public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080146; - public static final int ThemeOverlay_AppCompat_Light=0x7f080147; - public static final int Widget_AppCompat_ActionBar=0x7f080148; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f080149; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08014a; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f08014b; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f08014c; - public static final int Widget_AppCompat_ActionButton=0x7f08014d; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08014e; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08014f; - public static final int Widget_AppCompat_ActionMode=0x7f080150; - public static final int Widget_AppCompat_ActivityChooserView=0x7f080151; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080152; - public static final int Widget_AppCompat_Button=0x7f080153; - public static final int Widget_AppCompat_Button_Borderless=0x7f080154; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080155; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080156; - public static final int Widget_AppCompat_Button_Colored=0x7f080157; - public static final int Widget_AppCompat_Button_Small=0x7f080158; - public static final int Widget_AppCompat_ButtonBar=0x7f080159; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08015a; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08015b; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08015c; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08015d; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08015e; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08015f; - public static final int Widget_AppCompat_EditText=0x7f080160; - public static final int Widget_AppCompat_ImageButton=0x7f080161; - public static final int Widget_AppCompat_Light_ActionBar=0x7f080162; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080163; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080164; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080165; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080166; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080167; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080168; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080169; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08016a; - public static final int Widget_AppCompat_Light_ActionButton=0x7f08016b; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08016c; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08016d; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08016e; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08016f; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080170; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080171; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080172; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080173; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f080174; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080175; - public static final int Widget_AppCompat_Light_SearchView=0x7f080176; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080177; - public static final int Widget_AppCompat_ListMenuView=0x7f080178; - public static final int Widget_AppCompat_ListPopupWindow=0x7f080179; - public static final int Widget_AppCompat_ListView=0x7f08017a; - public static final int Widget_AppCompat_ListView_DropDown=0x7f08017b; - public static final int Widget_AppCompat_ListView_Menu=0x7f08017c; - public static final int Widget_AppCompat_PopupMenu=0x7f08017d; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08017e; - public static final int Widget_AppCompat_PopupWindow=0x7f08017f; - public static final int Widget_AppCompat_ProgressBar=0x7f080180; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080181; - public static final int Widget_AppCompat_RatingBar=0x7f080182; - public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080183; - public static final int Widget_AppCompat_RatingBar_Small=0x7f080184; - public static final int Widget_AppCompat_SearchView=0x7f080185; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080186; - public static final int Widget_AppCompat_SeekBar=0x7f080187; - public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080188; - public static final int Widget_AppCompat_Spinner=0x7f080189; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f08018a; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08018b; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f08018c; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08018d; - public static final int Widget_AppCompat_Toolbar=0x7f08018e; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08018f; - public static final int Widget_Compat_NotificationActionContainer=0x7f0801a6; - public static final int Widget_Compat_NotificationActionText=0x7f0801a7; - public static final int Widget_Design_AppBarLayout=0x7f080014; - public static final int Widget_Design_BottomNavigationView=0x7f080015; - public static final int Widget_Design_BottomSheet_Modal=0x7f080016; - public static final int Widget_Design_CollapsingToolbar=0x7f080017; - public static final int Widget_Design_CoordinatorLayout=0x7f080018; - public static final int Widget_Design_FloatingActionButton=0x7f080019; - public static final int Widget_Design_NavigationView=0x7f08001a; - public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; - public static final int Widget_Design_Snackbar=0x7f08001c; - public static final int Widget_Design_TabLayout=0x7f080000; - public static final int Widget_Design_TextInputLayout=0x7f08001d; - } - public static final class xml { - public static final int pref_main=0x7f060000; - } - public static final class styleable { - /** Attributes that can be used with a ActionBar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
- @see #ActionBar_background - @see #ActionBar_backgroundSplit - @see #ActionBar_backgroundStacked - @see #ActionBar_contentInsetEnd - @see #ActionBar_contentInsetEndWithActions - @see #ActionBar_contentInsetLeft - @see #ActionBar_contentInsetRight - @see #ActionBar_contentInsetStart - @see #ActionBar_contentInsetStartWithNavigation - @see #ActionBar_customNavigationLayout - @see #ActionBar_displayOptions - @see #ActionBar_divider - @see #ActionBar_elevation - @see #ActionBar_height - @see #ActionBar_hideOnContentScroll - @see #ActionBar_homeAsUpIndicator - @see #ActionBar_homeLayout - @see #ActionBar_icon - @see #ActionBar_indeterminateProgressStyle - @see #ActionBar_itemPadding - @see #ActionBar_logo - @see #ActionBar_navigationMode - @see #ActionBar_popupTheme - @see #ActionBar_progressBarPadding - @see #ActionBar_progressBarStyle - @see #ActionBar_subtitle - @see #ActionBar_subtitleTextStyle - @see #ActionBar_title - @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar = { - 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, - 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, - 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, - 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, - 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, - 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, - 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, - 0x7f0100be - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:background - */ - public static final int ActionBar_background = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundSplit - */ - public static final int ActionBar_backgroundSplit = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundStacked - */ - public static final int ActionBar_backgroundStacked = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEnd - */ - public static final int ActionBar_contentInsetEnd = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEndWithActions - */ - public static final int ActionBar_contentInsetEndWithActions = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetLeft - */ - public static final int ActionBar_contentInsetLeft = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetRight - */ - public static final int ActionBar_contentInsetRight = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStart - */ - public static final int ActionBar_contentInsetStart = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation - */ - public static final int ActionBar_contentInsetStartWithNavigation = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- @attr name net.kdt.pojavlaunch:displayOptions - */ - public static final int ActionBar_displayOptions = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:divider - */ - public static final int ActionBar_divider = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int ActionBar_elevation = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:height - */ - public static final int ActionBar_height = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hideOnContentScroll - */ - public static final int ActionBar_hideOnContentScroll = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeAsUpIndicator - */ - public static final int ActionBar_homeAsUpIndicator = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeLayout - */ - public static final int ActionBar_homeLayout = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:icon - */ - public static final int ActionBar_icon = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemPadding - */ - public static final int ActionBar_itemPadding = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:logo - */ - public static final int ActionBar_logo = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- @attr name net.kdt.pojavlaunch:navigationMode - */ - public static final int ActionBar_navigationMode = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int ActionBar_popupTheme = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:progressBarPadding - */ - public static final int ActionBar_progressBarPadding = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:progressBarStyle - */ - public static final int ActionBar_progressBarStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitle - */ - public static final int ActionBar_subtitle = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int ActionBar_title = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 5; - /** Attributes that can be used with a ActionBarLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
- @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout = { - 0x010100b3 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity = 0; - /** Attributes that can be used with a ActionMenuItemView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
- @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView = { - 0x0101013f - }; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth = 0; - /** Attributes that can be used with a ActionMenuView. - */ - public static final int[] ActionMenuView = { - - }; - /** Attributes that can be used with a ActionMode. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
- @see #ActionMode_background - @see #ActionMode_backgroundSplit - @see #ActionMode_closeItemLayout - @see #ActionMode_height - @see #ActionMode_subtitleTextStyle - @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode = { - 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, - 0x7f010069, 0x7f010079 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:background - */ - public static final int ActionMode_background = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionMode} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundSplit - */ - public static final int ActionMode_backgroundSplit = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:closeItemLayout - */ - public static final int ActionMode_closeItemLayout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:height - */ - public static final int ActionMode_height = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 1; - /** Attributes that can be used with a ActivityChooserView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
- @see #ActivityChooserView_expandActivityOverflowButtonDrawable - @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView = { - 0x7f01007a, 0x7f01007b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a AlertDialog. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
- @see #AlertDialog_android_layout - @see #AlertDialog_buttonPanelSideLayout - @see #AlertDialog_listItemLayout - @see #AlertDialog_listLayout - @see #AlertDialog_multiChoiceItemLayout - @see #AlertDialog_showTitle - @see #AlertDialog_singleChoiceItemLayout - */ - public static final int[] AlertDialog = { - 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #AlertDialog} array. - @attr name android:layout - */ - public static final int AlertDialog_android_layout = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonPanelSideLayout - */ - public static final int AlertDialog_buttonPanelSideLayout = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listItemLayout - */ - public static final int AlertDialog_listItemLayout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listLayout - */ - public static final int AlertDialog_listLayout = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:multiChoiceItemLayout - */ - public static final int AlertDialog_multiChoiceItemLayout = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showTitle - */ - public static final int AlertDialog_showTitle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:singleChoiceItemLayout - */ - public static final int AlertDialog_singleChoiceItemLayout = 4; - /** Attributes that can be used with a AppBarLayout. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
- @see #AppBarLayout_android_background - @see #AppBarLayout_android_keyboardNavigationCluster - @see #AppBarLayout_android_touchscreenBlocksFocus - @see #AppBarLayout_elevation - @see #AppBarLayout_expanded - */ - public static final int[] AppBarLayout = { - 0x010100d4, 0x0101048f, 0x01010540, 0x7f010000, - 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:background - */ - public static final int AppBarLayout_android_background = 0; - /** -

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:keyboardNavigationCluster - */ - public static final int AppBarLayout_android_keyboardNavigationCluster = 2; - /** -

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:touchscreenBlocksFocus - */ - public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #AppBarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int AppBarLayout_elevation = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} - attribute's value can be found in the {@link #AppBarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expanded - */ - public static final int AppBarLayout_expanded = 3; - /** Attributes that can be used with a AppBarLayoutStates. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
- @see #AppBarLayoutStates_state_collapsed - @see #AppBarLayoutStates_state_collapsible - */ - public static final int[] AppBarLayoutStates = { - 0x7f010001, 0x7f010002 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} - attribute's value can be found in the {@link #AppBarLayoutStates} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_collapsed - */ - public static final int AppBarLayoutStates_state_collapsed = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} - attribute's value can be found in the {@link #AppBarLayoutStates} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_collapsible - */ - public static final int AppBarLayoutStates_state_collapsible = 1; - /** Attributes that can be used with a AppBarLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
- @see #AppBarLayout_Layout_layout_scrollFlags - @see #AppBarLayout_Layout_layout_scrollInterpolator - */ - public static final int[] AppBarLayout_Layout = { - 0x7f010003, 0x7f010004 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} - attribute's value can be found in the {@link #AppBarLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
- @attr name net.kdt.pojavlaunch:layout_scrollFlags - */ - public static final int AppBarLayout_Layout_layout_scrollFlags = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} - attribute's value can be found in the {@link #AppBarLayout_Layout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout_scrollInterpolator - */ - public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; - /** Attributes that can be used with a AppCompatImageView. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
- @see #AppCompatImageView_android_src - @see #AppCompatImageView_srcCompat - @see #AppCompatImageView_tint - @see #AppCompatImageView_tintMode - */ - public static final int[] AppCompatImageView = { - 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 - }; - /** -

This symbol is the offset where the {@link android.R.attr#src} - attribute's value can be found in the {@link #AppCompatImageView} array. - @attr name android:src - */ - public static final int AppCompatImageView_android_src = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:srcCompat - */ - public static final int AppCompatImageView_srcCompat = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tint - */ - public static final int AppCompatImageView_tint = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:tintMode - */ - public static final int AppCompatImageView_tintMode = 3; - /** Attributes that can be used with a AppCompatSeekBar. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
- @see #AppCompatSeekBar_android_thumb - @see #AppCompatSeekBar_tickMark - @see #AppCompatSeekBar_tickMarkTint - @see #AppCompatSeekBar_tickMarkTintMode - */ - public static final int[] AppCompatSeekBar = { - 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 - }; - /** -

This symbol is the offset where the {@link android.R.attr#thumb} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - @attr name android:thumb - */ - public static final int AppCompatSeekBar_android_thumb = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tickMark - */ - public static final int AppCompatSeekBar_tickMark = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tickMarkTint - */ - public static final int AppCompatSeekBar_tickMarkTint = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:tickMarkTintMode - */ - public static final int AppCompatSeekBar_tickMarkTintMode = 3; - /** Attributes that can be used with a AppCompatTextHelper. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
- @see #AppCompatTextHelper_android_drawableBottom - @see #AppCompatTextHelper_android_drawableEnd - @see #AppCompatTextHelper_android_drawableLeft - @see #AppCompatTextHelper_android_drawableRight - @see #AppCompatTextHelper_android_drawableStart - @see #AppCompatTextHelper_android_drawableTop - @see #AppCompatTextHelper_android_textAppearance - */ - public static final int[] AppCompatTextHelper = { - 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, - 0x01010170, 0x01010392, 0x01010393 - }; - /** -

This symbol is the offset where the {@link android.R.attr#drawableBottom} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableBottom - */ - public static final int AppCompatTextHelper_android_drawableBottom = 2; - /** -

This symbol is the offset where the {@link android.R.attr#drawableEnd} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableEnd - */ - public static final int AppCompatTextHelper_android_drawableEnd = 6; - /** -

This symbol is the offset where the {@link android.R.attr#drawableLeft} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableLeft - */ - public static final int AppCompatTextHelper_android_drawableLeft = 3; - /** -

This symbol is the offset where the {@link android.R.attr#drawableRight} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableRight - */ - public static final int AppCompatTextHelper_android_drawableRight = 4; - /** -

This symbol is the offset where the {@link android.R.attr#drawableStart} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableStart - */ - public static final int AppCompatTextHelper_android_drawableStart = 5; - /** -

This symbol is the offset where the {@link android.R.attr#drawableTop} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableTop - */ - public static final int AppCompatTextHelper_android_drawableTop = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textAppearance} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:textAppearance - */ - public static final int AppCompatTextHelper_android_textAppearance = 0; - /** Attributes that can be used with a AppCompatTextView. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
- @see #AppCompatTextView_android_textAppearance - @see #AppCompatTextView_autoSizeMaxTextSize - @see #AppCompatTextView_autoSizeMinTextSize - @see #AppCompatTextView_autoSizePresetSizes - @see #AppCompatTextView_autoSizeStepGranularity - @see #AppCompatTextView_autoSizeTextType - @see #AppCompatTextView_fontFamily - @see #AppCompatTextView_textAllCaps - */ - public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e - }; - /** -

This symbol is the offset where the {@link android.R.attr#textAppearance} - attribute's value can be found in the {@link #AppCompatTextView} array. - @attr name android:textAppearance - */ - public static final int AppCompatTextView_android_textAppearance = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize - */ - public static final int AppCompatTextView_autoSizeMaxTextSize = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeMinTextSize - */ - public static final int AppCompatTextView_autoSizeMinTextSize = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:autoSizePresetSizes - */ - public static final int AppCompatTextView_autoSizePresetSizes = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeStepGranularity - */ - public static final int AppCompatTextView_autoSizeStepGranularity = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
none0
uniform1
- @attr name net.kdt.pojavlaunch:autoSizeTextType - */ - public static final int AppCompatTextView_autoSizeTextType = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontFamily - */ - public static final int AppCompatTextView_fontFamily = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name net.kdt.pojavlaunch:textAllCaps - */ - public static final int AppCompatTextView_textAllCaps = 1; - /** Attributes that can be used with a AppCompatTheme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
- @see #AppCompatTheme_actionBarDivider - @see #AppCompatTheme_actionBarItemBackground - @see #AppCompatTheme_actionBarPopupTheme - @see #AppCompatTheme_actionBarSize - @see #AppCompatTheme_actionBarSplitStyle - @see #AppCompatTheme_actionBarStyle - @see #AppCompatTheme_actionBarTabBarStyle - @see #AppCompatTheme_actionBarTabStyle - @see #AppCompatTheme_actionBarTabTextStyle - @see #AppCompatTheme_actionBarTheme - @see #AppCompatTheme_actionBarWidgetTheme - @see #AppCompatTheme_actionButtonStyle - @see #AppCompatTheme_actionDropDownStyle - @see #AppCompatTheme_actionMenuTextAppearance - @see #AppCompatTheme_actionMenuTextColor - @see #AppCompatTheme_actionModeBackground - @see #AppCompatTheme_actionModeCloseButtonStyle - @see #AppCompatTheme_actionModeCloseDrawable - @see #AppCompatTheme_actionModeCopyDrawable - @see #AppCompatTheme_actionModeCutDrawable - @see #AppCompatTheme_actionModeFindDrawable - @see #AppCompatTheme_actionModePasteDrawable - @see #AppCompatTheme_actionModePopupWindowStyle - @see #AppCompatTheme_actionModeSelectAllDrawable - @see #AppCompatTheme_actionModeShareDrawable - @see #AppCompatTheme_actionModeSplitBackground - @see #AppCompatTheme_actionModeStyle - @see #AppCompatTheme_actionModeWebSearchDrawable - @see #AppCompatTheme_actionOverflowButtonStyle - @see #AppCompatTheme_actionOverflowMenuStyle - @see #AppCompatTheme_activityChooserViewStyle - @see #AppCompatTheme_alertDialogButtonGroupStyle - @see #AppCompatTheme_alertDialogCenterButtons - @see #AppCompatTheme_alertDialogStyle - @see #AppCompatTheme_alertDialogTheme - @see #AppCompatTheme_android_windowAnimationStyle - @see #AppCompatTheme_android_windowIsFloating - @see #AppCompatTheme_autoCompleteTextViewStyle - @see #AppCompatTheme_borderlessButtonStyle - @see #AppCompatTheme_buttonBarButtonStyle - @see #AppCompatTheme_buttonBarNegativeButtonStyle - @see #AppCompatTheme_buttonBarNeutralButtonStyle - @see #AppCompatTheme_buttonBarPositiveButtonStyle - @see #AppCompatTheme_buttonBarStyle - @see #AppCompatTheme_buttonStyle - @see #AppCompatTheme_buttonStyleSmall - @see #AppCompatTheme_checkboxStyle - @see #AppCompatTheme_checkedTextViewStyle - @see #AppCompatTheme_colorAccent - @see #AppCompatTheme_colorBackgroundFloating - @see #AppCompatTheme_colorButtonNormal - @see #AppCompatTheme_colorControlActivated - @see #AppCompatTheme_colorControlHighlight - @see #AppCompatTheme_colorControlNormal - @see #AppCompatTheme_colorError - @see #AppCompatTheme_colorPrimary - @see #AppCompatTheme_colorPrimaryDark - @see #AppCompatTheme_colorSwitchThumbNormal - @see #AppCompatTheme_controlBackground - @see #AppCompatTheme_dialogPreferredPadding - @see #AppCompatTheme_dialogTheme - @see #AppCompatTheme_dividerHorizontal - @see #AppCompatTheme_dividerVertical - @see #AppCompatTheme_dropDownListViewStyle - @see #AppCompatTheme_dropdownListPreferredItemHeight - @see #AppCompatTheme_editTextBackground - @see #AppCompatTheme_editTextColor - @see #AppCompatTheme_editTextStyle - @see #AppCompatTheme_homeAsUpIndicator - @see #AppCompatTheme_imageButtonStyle - @see #AppCompatTheme_listChoiceBackgroundIndicator - @see #AppCompatTheme_listDividerAlertDialog - @see #AppCompatTheme_listMenuViewStyle - @see #AppCompatTheme_listPopupWindowStyle - @see #AppCompatTheme_listPreferredItemHeight - @see #AppCompatTheme_listPreferredItemHeightLarge - @see #AppCompatTheme_listPreferredItemHeightSmall - @see #AppCompatTheme_listPreferredItemPaddingLeft - @see #AppCompatTheme_listPreferredItemPaddingRight - @see #AppCompatTheme_panelBackground - @see #AppCompatTheme_panelMenuListTheme - @see #AppCompatTheme_panelMenuListWidth - @see #AppCompatTheme_popupMenuStyle - @see #AppCompatTheme_popupWindowStyle - @see #AppCompatTheme_radioButtonStyle - @see #AppCompatTheme_ratingBarStyle - @see #AppCompatTheme_ratingBarStyleIndicator - @see #AppCompatTheme_ratingBarStyleSmall - @see #AppCompatTheme_searchViewStyle - @see #AppCompatTheme_seekBarStyle - @see #AppCompatTheme_selectableItemBackground - @see #AppCompatTheme_selectableItemBackgroundBorderless - @see #AppCompatTheme_spinnerDropDownItemStyle - @see #AppCompatTheme_spinnerStyle - @see #AppCompatTheme_switchStyle - @see #AppCompatTheme_textAppearanceLargePopupMenu - @see #AppCompatTheme_textAppearanceListItem - @see #AppCompatTheme_textAppearanceListItemSecondary - @see #AppCompatTheme_textAppearanceListItemSmall - @see #AppCompatTheme_textAppearancePopupMenuHeader - @see #AppCompatTheme_textAppearanceSearchResultSubtitle - @see #AppCompatTheme_textAppearanceSearchResultTitle - @see #AppCompatTheme_textAppearanceSmallPopupMenu - @see #AppCompatTheme_textColorAlertDialogListItem - @see #AppCompatTheme_textColorSearchUrl - @see #AppCompatTheme_toolbarNavigationButtonStyle - @see #AppCompatTheme_toolbarStyle - @see #AppCompatTheme_tooltipForegroundColor - @see #AppCompatTheme_tooltipFrameBackground - @see #AppCompatTheme_windowActionBar - @see #AppCompatTheme_windowActionBarOverlay - @see #AppCompatTheme_windowActionModeOverlay - @see #AppCompatTheme_windowFixedHeightMajor - @see #AppCompatTheme_windowFixedHeightMinor - @see #AppCompatTheme_windowFixedWidthMajor - @see #AppCompatTheme_windowFixedWidthMinor - @see #AppCompatTheme_windowMinWidthMajor - @see #AppCompatTheme_windowMinWidthMinor - @see #AppCompatTheme_windowNoTitle - */ - public static final int[] AppCompatTheme = { - 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, - 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, - 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, - 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, - 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, - 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, - 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, - 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, - 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, - 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, - 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, - 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, - 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, - 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, - 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, - 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, - 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, - 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, - 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, - 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, - 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, - 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, - 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, - 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, - 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, - 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, - 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, - 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, - 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, - 0x7f010101, 0x7f010102, 0x7f010103 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarDivider - */ - public static final int AppCompatTheme_actionBarDivider = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarItemBackground - */ - public static final int AppCompatTheme_actionBarItemBackground = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarPopupTheme - */ - public static final int AppCompatTheme_actionBarPopupTheme = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- @attr name net.kdt.pojavlaunch:actionBarSize - */ - public static final int AppCompatTheme_actionBarSize = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarSplitStyle - */ - public static final int AppCompatTheme_actionBarSplitStyle = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarStyle - */ - public static final int AppCompatTheme_actionBarStyle = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabBarStyle - */ - public static final int AppCompatTheme_actionBarTabBarStyle = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabStyle - */ - public static final int AppCompatTheme_actionBarTabStyle = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabTextStyle - */ - public static final int AppCompatTheme_actionBarTabTextStyle = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTheme - */ - public static final int AppCompatTheme_actionBarTheme = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarWidgetTheme - */ - public static final int AppCompatTheme_actionBarWidgetTheme = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionButtonStyle - */ - public static final int AppCompatTheme_actionButtonStyle = 50; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionDropDownStyle - */ - public static final int AppCompatTheme_actionDropDownStyle = 46; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionMenuTextAppearance - */ - public static final int AppCompatTheme_actionMenuTextAppearance = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:actionMenuTextColor - */ - public static final int AppCompatTheme_actionMenuTextColor = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeBackground - */ - public static final int AppCompatTheme_actionModeBackground = 29; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle - */ - public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCloseDrawable - */ - public static final int AppCompatTheme_actionModeCloseDrawable = 31; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCopyDrawable - */ - public static final int AppCompatTheme_actionModeCopyDrawable = 33; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCutDrawable - */ - public static final int AppCompatTheme_actionModeCutDrawable = 32; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeFindDrawable - */ - public static final int AppCompatTheme_actionModeFindDrawable = 37; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModePasteDrawable - */ - public static final int AppCompatTheme_actionModePasteDrawable = 34; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle - */ - public static final int AppCompatTheme_actionModePopupWindowStyle = 39; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable - */ - public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeShareDrawable - */ - public static final int AppCompatTheme_actionModeShareDrawable = 36; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeSplitBackground - */ - public static final int AppCompatTheme_actionModeSplitBackground = 30; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeStyle - */ - public static final int AppCompatTheme_actionModeStyle = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable - */ - public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle - */ - public static final int AppCompatTheme_actionOverflowButtonStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle - */ - public static final int AppCompatTheme_actionOverflowMenuStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:activityChooserViewStyle - */ - public static final int AppCompatTheme_activityChooserViewStyle = 58; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle - */ - public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:alertDialogCenterButtons - */ - public static final int AppCompatTheme_alertDialogCenterButtons = 96; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogStyle - */ - public static final int AppCompatTheme_alertDialogStyle = 94; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogTheme - */ - public static final int AppCompatTheme_alertDialogTheme = 97; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - @attr name android:windowAnimationStyle - */ - public static final int AppCompatTheme_android_windowAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#windowIsFloating} - attribute's value can be found in the {@link #AppCompatTheme} array. - @attr name android:windowIsFloating - */ - public static final int AppCompatTheme_android_windowIsFloating = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle - */ - public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:borderlessButtonStyle - */ - public static final int AppCompatTheme_borderlessButtonStyle = 55; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarButtonStyle - */ - public static final int AppCompatTheme_buttonBarButtonStyle = 52; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle - */ - public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle - */ - public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle - */ - public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarStyle - */ - public static final int AppCompatTheme_buttonBarStyle = 51; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonStyle - */ - public static final int AppCompatTheme_buttonStyle = 103; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonStyleSmall - */ - public static final int AppCompatTheme_buttonStyleSmall = 104; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkboxStyle - */ - public static final int AppCompatTheme_checkboxStyle = 105; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkedTextViewStyle - */ - public static final int AppCompatTheme_checkedTextViewStyle = 106; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorAccent - */ - public static final int AppCompatTheme_colorAccent = 86; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorBackgroundFloating - */ - public static final int AppCompatTheme_colorBackgroundFloating = 93; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorButtonNormal - */ - public static final int AppCompatTheme_colorButtonNormal = 90; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlActivated - */ - public static final int AppCompatTheme_colorControlActivated = 88; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlHighlight - */ - public static final int AppCompatTheme_colorControlHighlight = 89; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlNormal - */ - public static final int AppCompatTheme_colorControlNormal = 87; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:colorError - */ - public static final int AppCompatTheme_colorError = 118; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorPrimary - */ - public static final int AppCompatTheme_colorPrimary = 84; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorPrimaryDark - */ - public static final int AppCompatTheme_colorPrimaryDark = 85; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal - */ - public static final int AppCompatTheme_colorSwitchThumbNormal = 91; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:controlBackground - */ - public static final int AppCompatTheme_controlBackground = 92; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogPreferredPadding - */ - public static final int AppCompatTheme_dialogPreferredPadding = 44; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogTheme - */ - public static final int AppCompatTheme_dialogTheme = 43; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dividerHorizontal - */ - public static final int AppCompatTheme_dividerHorizontal = 57; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dividerVertical - */ - public static final int AppCompatTheme_dividerVertical = 56; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dropDownListViewStyle - */ - public static final int AppCompatTheme_dropDownListViewStyle = 75; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight - */ - public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextBackground - */ - public static final int AppCompatTheme_editTextBackground = 64; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:editTextColor - */ - public static final int AppCompatTheme_editTextColor = 63; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextStyle - */ - public static final int AppCompatTheme_editTextStyle = 107; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeAsUpIndicator - */ - public static final int AppCompatTheme_homeAsUpIndicator = 49; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:imageButtonStyle - */ - public static final int AppCompatTheme_imageButtonStyle = 65; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator - */ - public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listDividerAlertDialog - */ - public static final int AppCompatTheme_listDividerAlertDialog = 45; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listMenuViewStyle - */ - public static final int AppCompatTheme_listMenuViewStyle = 115; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listPopupWindowStyle - */ - public static final int AppCompatTheme_listPopupWindowStyle = 76; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeight - */ - public static final int AppCompatTheme_listPreferredItemHeight = 70; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge - */ - public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall - */ - public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft - */ - public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight - */ - public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:panelBackground - */ - public static final int AppCompatTheme_panelBackground = 80; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:panelMenuListTheme - */ - public static final int AppCompatTheme_panelMenuListTheme = 82; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:panelMenuListWidth - */ - public static final int AppCompatTheme_panelMenuListWidth = 81; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupMenuStyle - */ - public static final int AppCompatTheme_popupMenuStyle = 61; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupWindowStyle - */ - public static final int AppCompatTheme_popupWindowStyle = 62; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:radioButtonStyle - */ - public static final int AppCompatTheme_radioButtonStyle = 108; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyle - */ - public static final int AppCompatTheme_ratingBarStyle = 109; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator - */ - public static final int AppCompatTheme_ratingBarStyleIndicator = 110; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyleSmall - */ - public static final int AppCompatTheme_ratingBarStyleSmall = 111; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchViewStyle - */ - public static final int AppCompatTheme_searchViewStyle = 69; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:seekBarStyle - */ - public static final int AppCompatTheme_seekBarStyle = 112; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackground - */ - public static final int AppCompatTheme_selectableItemBackground = 53; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless - */ - public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle - */ - public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:spinnerStyle - */ - public static final int AppCompatTheme_spinnerStyle = 113; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchStyle - */ - public static final int AppCompatTheme_switchStyle = 114; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu - */ - public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItem - */ - public static final int AppCompatTheme_textAppearanceListItem = 77; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary - */ - public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall - */ - public static final int AppCompatTheme_textAppearanceListItemSmall = 79; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader - */ - public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu - */ - public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem - */ - public static final int AppCompatTheme_textColorAlertDialogListItem = 98; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorSearchUrl - */ - public static final int AppCompatTheme_textColorSearchUrl = 68; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle - */ - public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarStyle - */ - public static final int AppCompatTheme_toolbarStyle = 59; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:tooltipForegroundColor - */ - public static final int AppCompatTheme_tooltipForegroundColor = 117; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tooltipFrameBackground - */ - public static final int AppCompatTheme_tooltipFrameBackground = 116; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionBar - */ - public static final int AppCompatTheme_windowActionBar = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionBarOverlay - */ - public static final int AppCompatTheme_windowActionBarOverlay = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionModeOverlay - */ - public static final int AppCompatTheme_windowActionModeOverlay = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedHeightMajor - */ - public static final int AppCompatTheme_windowFixedHeightMajor = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedHeightMinor - */ - public static final int AppCompatTheme_windowFixedHeightMinor = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedWidthMajor - */ - public static final int AppCompatTheme_windowFixedWidthMajor = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedWidthMinor - */ - public static final int AppCompatTheme_windowFixedWidthMinor = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowMinWidthMajor - */ - public static final int AppCompatTheme_windowMinWidthMajor = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowMinWidthMinor - */ - public static final int AppCompatTheme_windowMinWidthMinor = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowNoTitle - */ - public static final int AppCompatTheme_windowNoTitle = 3; - /** Attributes that can be used with a BackgroundStyle. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #BackgroundStyle_android_selectableItemBackground android:selectableItemBackground}
{@link #BackgroundStyle_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
- @see #BackgroundStyle_android_selectableItemBackground - @see #BackgroundStyle_selectableItemBackground - */ - public static final int[] BackgroundStyle = { - 0x0101030e, 0x7f0100c2 - }; - /** -

This symbol is the offset where the {@link android.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #BackgroundStyle} array. - @attr name android:selectableItemBackground - */ - public static final int BackgroundStyle_android_selectableItemBackground = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #BackgroundStyle} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackground - */ - public static final int BackgroundStyle_selectableItemBackground = 1; - /** Attributes that can be used with a BottomNavigationView. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
- @see #BottomNavigationView_elevation - @see #BottomNavigationView_itemBackground - @see #BottomNavigationView_itemIconTint - @see #BottomNavigationView_itemTextColor - @see #BottomNavigationView_menu - */ - public static final int[] BottomNavigationView = { - 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, - 0x7f010077 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int BottomNavigationView_elevation = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemBackground - */ - public static final int BottomNavigationView_itemBackground = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemIconTint - */ - public static final int BottomNavigationView_itemIconTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemTextColor - */ - public static final int BottomNavigationView_itemTextColor = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:menu - */ - public static final int BottomNavigationView_menu = 0; - /** Attributes that can be used with a BottomSheetBehavior_Layout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
- @see #BottomSheetBehavior_Layout_behavior_hideable - @see #BottomSheetBehavior_Layout_behavior_peekHeight - @see #BottomSheetBehavior_Layout_behavior_skipCollapsed - */ - public static final int[] BottomSheetBehavior_Layout = { - 0x7f010005, 0x7f010006, 0x7f010007 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_hideable - */ - public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
auto-1
- @attr name net.kdt.pojavlaunch:behavior_peekHeight - */ - public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_skipCollapsed - */ - public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; - /** Attributes that can be used with a ButtonBarLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
- @see #ButtonBarLayout_allowStacking - */ - public static final int[] ButtonBarLayout = { - 0x7f010104 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} - attribute's value can be found in the {@link #ButtonBarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowStacking - */ - public static final int ButtonBarLayout_allowStacking = 0; - /** Attributes that can be used with a CheckBoxPreference. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #CheckBoxPreference_android_disableDependentsState android:disableDependentsState}
{@link #CheckBoxPreference_android_summaryOff android:summaryOff}
{@link #CheckBoxPreference_android_summaryOn android:summaryOn}
{@link #CheckBoxPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #CheckBoxPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #CheckBoxPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
- @see #CheckBoxPreference_android_disableDependentsState - @see #CheckBoxPreference_android_summaryOff - @see #CheckBoxPreference_android_summaryOn - @see #CheckBoxPreference_disableDependentsState - @see #CheckBoxPreference_summaryOff - @see #CheckBoxPreference_summaryOn - */ - public static final int[] CheckBoxPreference = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x7f010151, - 0x7f010152, 0x7f010153 - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:disableDependentsState - */ - public static final int CheckBoxPreference_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:summaryOff - */ - public static final int CheckBoxPreference_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:summaryOn - */ - public static final int CheckBoxPreference_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int CheckBoxPreference_disableDependentsState = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int CheckBoxPreference_summaryOff = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int CheckBoxPreference_summaryOn = 3; - /** Attributes that can be used with a CollapsingToolbarLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
- @see #CollapsingToolbarLayout_collapsedTitleGravity - @see #CollapsingToolbarLayout_collapsedTitleTextAppearance - @see #CollapsingToolbarLayout_contentScrim - @see #CollapsingToolbarLayout_expandedTitleGravity - @see #CollapsingToolbarLayout_expandedTitleMargin - @see #CollapsingToolbarLayout_expandedTitleMarginBottom - @see #CollapsingToolbarLayout_expandedTitleMarginEnd - @see #CollapsingToolbarLayout_expandedTitleMarginStart - @see #CollapsingToolbarLayout_expandedTitleMarginTop - @see #CollapsingToolbarLayout_expandedTitleTextAppearance - @see #CollapsingToolbarLayout_scrimAnimationDuration - @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger - @see #CollapsingToolbarLayout_statusBarScrim - @see #CollapsingToolbarLayout_title - @see #CollapsingToolbarLayout_titleEnabled - @see #CollapsingToolbarLayout_toolbarId - */ - public static final int[] CollapsingToolbarLayout = { - 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, - 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, - 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, - 0x7f010014, 0x7f010015, 0x7f010016, 0x7f01005e - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:collapsedTitleGravity - */ - public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance - */ - public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentScrim - */ - public static final int CollapsingToolbarLayout_contentScrim = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:expandedTitleGravity - */ - public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMargin - */ - public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginStart - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginTop - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance - */ - public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:scrimAnimationDuration - */ - public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger - */ - public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:statusBarScrim - */ - public static final int CollapsingToolbarLayout_statusBarScrim = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int CollapsingToolbarLayout_title = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleEnabled - */ - public static final int CollapsingToolbarLayout_titleEnabled = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarId - */ - public static final int CollapsingToolbarLayout_toolbarId = 9; - /** Attributes that can be used with a CollapsingToolbarLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
- @see #CollapsingToolbarLayout_Layout_layout_collapseMode - @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier - */ - public static final int[] CollapsingToolbarLayout_Layout = { - 0x7f010017, 0x7f010018 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} - attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
none0
pin1
parallax2
- @attr name net.kdt.pojavlaunch:layout_collapseMode - */ - public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} - attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier - */ - public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; - /** Attributes that can be used with a ColorStateListItem. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
- @see #ColorStateListItem_alpha - @see #ColorStateListItem_android_alpha - @see #ColorStateListItem_android_color - */ - public static final int[] ColorStateListItem = { - 0x010101a5, 0x0101031f, 0x7f010105 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} - attribute's value can be found in the {@link #ColorStateListItem} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:alpha - */ - public static final int ColorStateListItem_alpha = 2; - /** -

This symbol is the offset where the {@link android.R.attr#alpha} - attribute's value can be found in the {@link #ColorStateListItem} array. - @attr name android:alpha - */ - public static final int ColorStateListItem_android_alpha = 1; - /** -

This symbol is the offset where the {@link android.R.attr#color} - attribute's value can be found in the {@link #ColorStateListItem} array. - @attr name android:color - */ - public static final int ColorStateListItem_android_color = 0; - /** Attributes that can be used with a CompoundButton. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
- @see #CompoundButton_android_button - @see #CompoundButton_buttonTint - @see #CompoundButton_buttonTintMode - */ - public static final int[] CompoundButton = { - 0x01010107, 0x7f010106, 0x7f010107 - }; - /** -

This symbol is the offset where the {@link android.R.attr#button} - attribute's value can be found in the {@link #CompoundButton} array. - @attr name android:button - */ - public static final int CompoundButton_android_button = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} - attribute's value can be found in the {@link #CompoundButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:buttonTint - */ - public static final int CompoundButton_buttonTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} - attribute's value can be found in the {@link #CompoundButton} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:buttonTintMode - */ - public static final int CompoundButton_buttonTintMode = 2; - /** Attributes that can be used with a CoordinatorLayout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
- @see #CoordinatorLayout_keylines - @see #CoordinatorLayout_statusBarBackground - */ - public static final int[] CoordinatorLayout = { - 0x7f010019, 0x7f01001a - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} - attribute's value can be found in the {@link #CoordinatorLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:keylines - */ - public static final int CoordinatorLayout_keylines = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} - attribute's value can be found in the {@link #CoordinatorLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:statusBarBackground - */ - public static final int CoordinatorLayout_statusBarBackground = 1; - /** Attributes that can be used with a CoordinatorLayout_Layout. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
- @see #CoordinatorLayout_Layout_android_layout_gravity - @see #CoordinatorLayout_Layout_layout_anchor - @see #CoordinatorLayout_Layout_layout_anchorGravity - @see #CoordinatorLayout_Layout_layout_behavior - @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges - @see #CoordinatorLayout_Layout_layout_insetEdge - @see #CoordinatorLayout_Layout_layout_keyline - */ - public static final int[] CoordinatorLayout_Layout = { - 0x010100b3, 0x7f01001b, 0x7f01001c, 0x7f01001d, - 0x7f01001e, 0x7f01001f, 0x7f010020 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - @attr name android:layout_gravity - */ - public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout_anchor - */ - public static final int CoordinatorLayout_Layout_layout_anchor = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:layout_anchorGravity - */ - public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_behavior - */ - public static final int CoordinatorLayout_Layout_layout_behavior = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
- @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges - */ - public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:layout_insetEdge - */ - public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_keyline - */ - public static final int CoordinatorLayout_Layout_layout_keyline = 3; - /** Attributes that can be used with a DesignTheme. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
- @see #DesignTheme_bottomSheetDialogTheme - @see #DesignTheme_bottomSheetStyle - @see #DesignTheme_textColorError - */ - public static final int[] DesignTheme = { - 0x7f010021, 0x7f010022, 0x7f010023 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} - attribute's value can be found in the {@link #DesignTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme - */ - public static final int DesignTheme_bottomSheetDialogTheme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} - attribute's value can be found in the {@link #DesignTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:bottomSheetStyle - */ - public static final int DesignTheme_bottomSheetStyle = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} - attribute's value can be found in the {@link #DesignTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorError - */ - public static final int DesignTheme_textColorError = 2; - /** Attributes that can be used with a DialogPreference. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #DialogPreference_android_dialogIcon android:dialogIcon}
{@link #DialogPreference_android_dialogLayout android:dialogLayout}
{@link #DialogPreference_android_dialogMessage android:dialogMessage}
{@link #DialogPreference_android_dialogTitle android:dialogTitle}
{@link #DialogPreference_android_negativeButtonText android:negativeButtonText}
{@link #DialogPreference_android_positiveButtonText android:positiveButtonText}
{@link #DialogPreference_dialogIcon net.kdt.pojavlaunch:dialogIcon}
{@link #DialogPreference_dialogLayout net.kdt.pojavlaunch:dialogLayout}
{@link #DialogPreference_dialogMessage net.kdt.pojavlaunch:dialogMessage}
{@link #DialogPreference_dialogTitle net.kdt.pojavlaunch:dialogTitle}
{@link #DialogPreference_negativeButtonText net.kdt.pojavlaunch:negativeButtonText}
{@link #DialogPreference_positiveButtonText net.kdt.pojavlaunch:positiveButtonText}
- @see #DialogPreference_android_dialogIcon - @see #DialogPreference_android_dialogLayout - @see #DialogPreference_android_dialogMessage - @see #DialogPreference_android_dialogTitle - @see #DialogPreference_android_negativeButtonText - @see #DialogPreference_android_positiveButtonText - @see #DialogPreference_dialogIcon - @see #DialogPreference_dialogLayout - @see #DialogPreference_dialogMessage - @see #DialogPreference_dialogTitle - @see #DialogPreference_negativeButtonText - @see #DialogPreference_positiveButtonText - */ - public static final int[] DialogPreference = { - 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, - 0x010101f6, 0x010101f7, 0x7f010154, 0x7f010155, - 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159 - }; - /** -

This symbol is the offset where the {@link android.R.attr#dialogIcon} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogIcon - */ - public static final int DialogPreference_android_dialogIcon = 2; - /** -

This symbol is the offset where the {@link android.R.attr#dialogLayout} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogLayout - */ - public static final int DialogPreference_android_dialogLayout = 5; - /** -

This symbol is the offset where the {@link android.R.attr#dialogMessage} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogMessage - */ - public static final int DialogPreference_android_dialogMessage = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dialogTitle} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogTitle - */ - public static final int DialogPreference_android_dialogTitle = 0; - /** -

This symbol is the offset where the {@link android.R.attr#negativeButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:negativeButtonText - */ - public static final int DialogPreference_android_negativeButtonText = 4; - /** -

This symbol is the offset where the {@link android.R.attr#positiveButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:positiveButtonText - */ - public static final int DialogPreference_android_positiveButtonText = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogIcon} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogIcon - */ - public static final int DialogPreference_dialogIcon = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogLayout} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogLayout - */ - public static final int DialogPreference_dialogLayout = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogMessage} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogMessage - */ - public static final int DialogPreference_dialogMessage = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTitle} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogTitle - */ - public static final int DialogPreference_dialogTitle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#negativeButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:negativeButtonText - */ - public static final int DialogPreference_negativeButtonText = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#positiveButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:positiveButtonText - */ - public static final int DialogPreference_positiveButtonText = 9; - /** Attributes that can be used with a DrawerArrowToggle. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
- @see #DrawerArrowToggle_arrowHeadLength - @see #DrawerArrowToggle_arrowShaftLength - @see #DrawerArrowToggle_barLength - @see #DrawerArrowToggle_color - @see #DrawerArrowToggle_drawableSize - @see #DrawerArrowToggle_gapBetweenBars - @see #DrawerArrowToggle_spinBars - @see #DrawerArrowToggle_thickness - */ - public static final int[] DrawerArrowToggle = { - 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, - 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:arrowHeadLength - */ - public static final int DrawerArrowToggle_arrowHeadLength = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:arrowShaftLength - */ - public static final int DrawerArrowToggle_arrowShaftLength = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:barLength - */ - public static final int DrawerArrowToggle_barLength = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:color - */ - public static final int DrawerArrowToggle_color = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:drawableSize - */ - public static final int DrawerArrowToggle_drawableSize = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:gapBetweenBars - */ - public static final int DrawerArrowToggle_gapBetweenBars = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:spinBars - */ - public static final int DrawerArrowToggle_spinBars = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thickness - */ - public static final int DrawerArrowToggle_thickness = 7; - /** Attributes that can be used with a FloatingActionButton. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
- @see #FloatingActionButton_backgroundTint - @see #FloatingActionButton_backgroundTintMode - @see #FloatingActionButton_borderWidth - @see #FloatingActionButton_elevation - @see #FloatingActionButton_fabSize - @see #FloatingActionButton_pressedTranslationZ - @see #FloatingActionButton_rippleColor - @see #FloatingActionButton_useCompatPadding - */ - public static final int[] FloatingActionButton = { - 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, - 0x7f010028, 0x7f010077, 0x7f01014f, 0x7f010150 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:backgroundTint - */ - public static final int FloatingActionButton_backgroundTint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:backgroundTintMode - */ - public static final int FloatingActionButton_backgroundTintMode = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:borderWidth - */ - public static final int FloatingActionButton_borderWidth = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int FloatingActionButton_elevation = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
auto-1
normal0
mini1
- @attr name net.kdt.pojavlaunch:fabSize - */ - public static final int FloatingActionButton_fabSize = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:pressedTranslationZ - */ - public static final int FloatingActionButton_pressedTranslationZ = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:rippleColor - */ - public static final int FloatingActionButton_rippleColor = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:useCompatPadding - */ - public static final int FloatingActionButton_useCompatPadding = 4; - /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
- @see #FloatingActionButton_Behavior_Layout_behavior_autoHide - */ - public static final int[] FloatingActionButton_Behavior_Layout = { - 0x7f010029 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} - attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_autoHide - */ - public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; - /** Attributes that can be used with a FontFamily. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
- @see #FontFamily_fontProviderAuthority - @see #FontFamily_fontProviderCerts - @see #FontFamily_fontProviderFetchStrategy - @see #FontFamily_fontProviderFetchTimeout - @see #FontFamily_fontProviderPackage - @see #FontFamily_fontProviderQuery - */ - public static final int[] FontFamily = { - 0x7f01018c, 0x7f01018d, 0x7f01018e, 0x7f01018f, - 0x7f010190, 0x7f010191 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderAuthority - */ - public static final int FontFamily_fontProviderAuthority = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fontProviderCerts - */ - public static final int FontFamily_fontProviderCerts = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
blocking0
async1
- @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy - */ - public static final int FontFamily_fontProviderFetchStrategy = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} - attribute's value can be found in the {@link #FontFamily} array. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
forever-1
- @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout - */ - public static final int FontFamily_fontProviderFetchTimeout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderPackage - */ - public static final int FontFamily_fontProviderPackage = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderQuery - */ - public static final int FontFamily_fontProviderQuery = 2; - /** Attributes that can be used with a FontFamilyFont. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
- @see #FontFamilyFont_font - @see #FontFamilyFont_fontStyle - @see #FontFamilyFont_fontWeight - */ - public static final int[] FontFamilyFont = { - 0x7f010192, 0x7f010193, 0x7f010194 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:font - */ - public static final int FontFamilyFont_font = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
normal0
italic1
- @attr name net.kdt.pojavlaunch:fontStyle - */ - public static final int FontFamilyFont_fontStyle = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontWeight - */ - public static final int FontFamilyFont_fontWeight = 2; - /** Attributes that can be used with a ForegroundLinearLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
- @see #ForegroundLinearLayout_android_foreground - @see #ForegroundLinearLayout_android_foregroundGravity - @see #ForegroundLinearLayout_foregroundInsidePadding - */ - public static final int[] ForegroundLinearLayout = { - 0x01010109, 0x01010200, 0x7f01002a - }; - /** -

This symbol is the offset where the {@link android.R.attr#foreground} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - @attr name android:foreground - */ - public static final int ForegroundLinearLayout_android_foreground = 0; - /** -

This symbol is the offset where the {@link android.R.attr#foregroundGravity} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - @attr name android:foregroundGravity - */ - public static final int ForegroundLinearLayout_android_foregroundGravity = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:foregroundInsidePadding - */ - public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; - /** Attributes that can be used with a LinearLayoutCompat. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
- @see #LinearLayoutCompat_android_baselineAligned - @see #LinearLayoutCompat_android_baselineAlignedChildIndex - @see #LinearLayoutCompat_android_gravity - @see #LinearLayoutCompat_android_orientation - @see #LinearLayoutCompat_android_weightSum - @see #LinearLayoutCompat_divider - @see #LinearLayoutCompat_dividerPadding - @see #LinearLayoutCompat_measureWithLargestChild - @see #LinearLayoutCompat_showDividers - */ - public static final int[] LinearLayoutCompat = { - 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, - 0x7f010112 - }; - /** -

This symbol is the offset where the {@link android.R.attr#baselineAligned} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAligned - */ - public static final int LinearLayoutCompat_android_baselineAligned = 2; - /** -

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAlignedChildIndex - */ - public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:gravity - */ - public static final int LinearLayoutCompat_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#orientation} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:orientation - */ - public static final int LinearLayoutCompat_android_orientation = 1; - /** -

This symbol is the offset where the {@link android.R.attr#weightSum} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:weightSum - */ - public static final int LinearLayoutCompat_android_weightSum = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:divider - */ - public static final int LinearLayoutCompat_divider = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dividerPadding - */ - public static final int LinearLayoutCompat_dividerPadding = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:measureWithLargestChild - */ - public static final int LinearLayoutCompat_measureWithLargestChild = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- @attr name net.kdt.pojavlaunch:showDividers - */ - public static final int LinearLayoutCompat_showDividers = 7; - /** Attributes that can be used with a LinearLayoutCompat_Layout. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
- @see #LinearLayoutCompat_Layout_android_layout_gravity - @see #LinearLayoutCompat_Layout_android_layout_height - @see #LinearLayoutCompat_Layout_android_layout_weight - @see #LinearLayoutCompat_Layout_android_layout_width - */ - public static final int[] LinearLayoutCompat_Layout = { - 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_gravity - */ - public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout_height} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_height - */ - public static final int LinearLayoutCompat_Layout_android_layout_height = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout_weight} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_weight - */ - public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; - /** -

This symbol is the offset where the {@link android.R.attr#layout_width} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_width - */ - public static final int LinearLayoutCompat_Layout_android_layout_width = 1; - /** Attributes that can be used with a ListPopupWindow. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
- @see #ListPopupWindow_android_dropDownHorizontalOffset - @see #ListPopupWindow_android_dropDownVerticalOffset - */ - public static final int[] ListPopupWindow = { - 0x010102ac, 0x010102ad - }; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownHorizontalOffset - */ - public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownVerticalOffset - */ - public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; - /** Attributes that can be used with a ListPreference. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #ListPreference_android_entries android:entries}
{@link #ListPreference_android_entryValues android:entryValues}
{@link #ListPreference_entries net.kdt.pojavlaunch:entries}
{@link #ListPreference_entryValues net.kdt.pojavlaunch:entryValues}
- @see #ListPreference_android_entries - @see #ListPreference_android_entryValues - @see #ListPreference_entries - @see #ListPreference_entryValues - */ - public static final int[] ListPreference = { - 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b - }; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #ListPreference} array. - @attr name android:entries - */ - public static final int ListPreference_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#entryValues} - attribute's value can be found in the {@link #ListPreference} array. - @attr name android:entryValues - */ - public static final int ListPreference_android_entryValues = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} - attribute's value can be found in the {@link #ListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entries - */ - public static final int ListPreference_entries = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} - attribute's value can be found in the {@link #ListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entryValues - */ - public static final int ListPreference_entryValues = 3; - /** Attributes that can be used with a MenuGroup. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
- @see #MenuGroup_android_checkableBehavior - @see #MenuGroup_android_enabled - @see #MenuGroup_android_id - @see #MenuGroup_android_menuCategory - @see #MenuGroup_android_orderInCategory - @see #MenuGroup_android_visible - */ - public static final int[] MenuGroup = { - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0 - }; - /** -

This symbol is the offset where the {@link android.R.attr#checkableBehavior} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior = 5; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:enabled - */ - public static final int MenuGroup_android_enabled = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:id - */ - public static final int MenuGroup_android_id = 1; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory = 3; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory = 4; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:visible - */ - public static final int MenuGroup_android_visible = 2; - /** Attributes that can be used with a MenuItem. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
- @see #MenuItem_actionLayout - @see #MenuItem_actionProviderClass - @see #MenuItem_actionViewClass - @see #MenuItem_alphabeticModifiers - @see #MenuItem_android_alphabeticShortcut - @see #MenuItem_android_checkable - @see #MenuItem_android_checked - @see #MenuItem_android_enabled - @see #MenuItem_android_icon - @see #MenuItem_android_id - @see #MenuItem_android_menuCategory - @see #MenuItem_android_numericShortcut - @see #MenuItem_android_onClick - @see #MenuItem_android_orderInCategory - @see #MenuItem_android_title - @see #MenuItem_android_titleCondensed - @see #MenuItem_android_visible - @see #MenuItem_contentDescription - @see #MenuItem_iconTint - @see #MenuItem_iconTintMode - @see #MenuItem_numericModifiers - @see #MenuItem_showAsAction - @see #MenuItem_tooltipText - */ - public static final int[] MenuItem = { - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, - 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, - 0x7f01011a, 0x7f01011b, 0x7f01011c - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionLayout - */ - public static final int MenuItem_actionLayout = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:actionProviderClass - */ - public static final int MenuItem_actionProviderClass = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:actionViewClass - */ - public static final int MenuItem_actionViewClass = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- @attr name net.kdt.pojavlaunch:alphabeticModifiers - */ - public static final int MenuItem_alphabeticModifiers = 13; - /** -

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut = 9; - /** -

This symbol is the offset where the {@link android.R.attr#checkable} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checkable - */ - public static final int MenuItem_android_checkable = 11; - /** -

This symbol is the offset where the {@link android.R.attr#checked} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checked - */ - public static final int MenuItem_android_checked = 3; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:enabled - */ - public static final int MenuItem_android_enabled = 1; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:icon - */ - public static final int MenuItem_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:id - */ - public static final int MenuItem_android_id = 2; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory = 5; - /** -

This symbol is the offset where the {@link android.R.attr#numericShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut = 10; - /** -

This symbol is the offset where the {@link android.R.attr#onClick} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:onClick - */ - public static final int MenuItem_android_onClick = 12; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory = 6; - /** -

This symbol is the offset where the {@link android.R.attr#title} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:title - */ - public static final int MenuItem_android_title = 7; - /** -

This symbol is the offset where the {@link android.R.attr#titleCondensed} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed = 8; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:visible - */ - public static final int MenuItem_android_visible = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentDescription - */ - public static final int MenuItem_contentDescription = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconTint - */ - public static final int MenuItem_iconTint = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:iconTintMode - */ - public static final int MenuItem_iconTintMode = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- @attr name net.kdt.pojavlaunch:numericModifiers - */ - public static final int MenuItem_numericModifiers = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
- @attr name net.kdt.pojavlaunch:showAsAction - */ - public static final int MenuItem_showAsAction = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tooltipText - */ - public static final int MenuItem_tooltipText = 20; - /** Attributes that can be used with a MenuView. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
- @see #MenuView_android_headerBackground - @see #MenuView_android_horizontalDivider - @see #MenuView_android_itemBackground - @see #MenuView_android_itemIconDisabledAlpha - @see #MenuView_android_itemTextAppearance - @see #MenuView_android_verticalDivider - @see #MenuView_android_windowAnimationStyle - @see #MenuView_preserveIconSpacing - @see #MenuView_subMenuArrow - */ - public static final int[] MenuView = { - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, - 0x7f01011e - }; - /** -

This symbol is the offset where the {@link android.R.attr#headerBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground = 4; - /** -

This symbol is the offset where the {@link android.R.attr#horizontalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider = 2; - /** -

This symbol is the offset where the {@link android.R.attr#itemBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground = 5; - /** -

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha = 6; - /** -

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance = 1; - /** -

This symbol is the offset where the {@link android.R.attr#verticalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider = 3; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} - attribute's value can be found in the {@link #MenuView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:preserveIconSpacing - */ - public static final int MenuView_preserveIconSpacing = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} - attribute's value can be found in the {@link #MenuView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subMenuArrow - */ - public static final int MenuView_subMenuArrow = 8; - /** Attributes that can be used with a MultiSelectListPreference. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #MultiSelectListPreference_android_entries android:entries}
{@link #MultiSelectListPreference_android_entryValues android:entryValues}
{@link #MultiSelectListPreference_entries net.kdt.pojavlaunch:entries}
{@link #MultiSelectListPreference_entryValues net.kdt.pojavlaunch:entryValues}
- @see #MultiSelectListPreference_android_entries - @see #MultiSelectListPreference_android_entryValues - @see #MultiSelectListPreference_entries - @see #MultiSelectListPreference_entryValues - */ - public static final int[] MultiSelectListPreference = { - 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b - }; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - @attr name android:entries - */ - public static final int MultiSelectListPreference_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#entryValues} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - @attr name android:entryValues - */ - public static final int MultiSelectListPreference_android_entryValues = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entries - */ - public static final int MultiSelectListPreference_entries = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entryValues - */ - public static final int MultiSelectListPreference_entryValues = 3; - /** Attributes that can be used with a NavigationView. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
- @see #NavigationView_android_background - @see #NavigationView_android_fitsSystemWindows - @see #NavigationView_android_maxWidth - @see #NavigationView_elevation - @see #NavigationView_headerLayout - @see #NavigationView_itemBackground - @see #NavigationView_itemIconTint - @see #NavigationView_itemTextAppearance - @see #NavigationView_itemTextColor - @see #NavigationView_menu - */ - public static final int[] NavigationView = { - 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01002b, - 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, - 0x7f010030, 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:background - */ - public static final int NavigationView_android_background = 0; - /** -

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:fitsSystemWindows - */ - public static final int NavigationView_android_fitsSystemWindows = 1; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:maxWidth - */ - public static final int NavigationView_android_maxWidth = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int NavigationView_elevation = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:headerLayout - */ - public static final int NavigationView_headerLayout = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemBackground - */ - public static final int NavigationView_itemBackground = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemIconTint - */ - public static final int NavigationView_itemIconTint = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemTextAppearance - */ - public static final int NavigationView_itemTextAppearance = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemTextColor - */ - public static final int NavigationView_itemTextColor = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:menu - */ - public static final int NavigationView_menu = 3; - /** Attributes that can be used with a PopupWindow. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
- @see #PopupWindow_android_popupAnimationStyle - @see #PopupWindow_android_popupBackground - @see #PopupWindow_overlapAnchor - */ - public static final int[] PopupWindow = { - 0x01010176, 0x010102c9, 0x7f01011f - }; - /** -

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} - attribute's value can be found in the {@link #PopupWindow} array. - @attr name android:popupAnimationStyle - */ - public static final int PopupWindow_android_popupAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #PopupWindow} array. - @attr name android:popupBackground - */ - public static final int PopupWindow_android_popupBackground = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} - attribute's value can be found in the {@link #PopupWindow} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:overlapAnchor - */ - public static final int PopupWindow_overlapAnchor = 2; - /** Attributes that can be used with a PopupWindowBackgroundState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
- @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState = { - 0x7f010120 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} - attribute's value can be found in the {@link #PopupWindowBackgroundState} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_above_anchor - */ - public static final int PopupWindowBackgroundState_state_above_anchor = 0; - /** Attributes that can be used with a Preference. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Preference_allowDividerAbove net.kdt.pojavlaunch:allowDividerAbove}
{@link #Preference_allowDividerBelow net.kdt.pojavlaunch:allowDividerBelow}
{@link #Preference_android_defaultValue android:defaultValue}
{@link #Preference_android_dependency android:dependency}
{@link #Preference_android_enabled android:enabled}
{@link #Preference_android_fragment android:fragment}
{@link #Preference_android_icon android:icon}
{@link #Preference_android_iconSpaceReserved android:iconSpaceReserved}
{@link #Preference_android_key android:key}
{@link #Preference_android_layout android:layout}
{@link #Preference_android_order android:order}
{@link #Preference_android_persistent android:persistent}
{@link #Preference_android_selectable android:selectable}
{@link #Preference_android_shouldDisableView android:shouldDisableView}
{@link #Preference_android_singleLineTitle android:singleLineTitle}
{@link #Preference_android_summary android:summary}
{@link #Preference_android_title android:title}
{@link #Preference_android_widgetLayout android:widgetLayout}
{@link #Preference_defaultValue net.kdt.pojavlaunch:defaultValue}
{@link #Preference_dependency net.kdt.pojavlaunch:dependency}
{@link #Preference_enabled net.kdt.pojavlaunch:enabled}
{@link #Preference_fragment net.kdt.pojavlaunch:fragment}
{@link #Preference_icon net.kdt.pojavlaunch:icon}
{@link #Preference_iconSpaceReserved net.kdt.pojavlaunch:iconSpaceReserved}
{@link #Preference_key net.kdt.pojavlaunch:key}
{@link #Preference_layout net.kdt.pojavlaunch:layout}
{@link #Preference_order net.kdt.pojavlaunch:order}
{@link #Preference_persistent net.kdt.pojavlaunch:persistent}
{@link #Preference_selectable net.kdt.pojavlaunch:selectable}
{@link #Preference_shouldDisableView net.kdt.pojavlaunch:shouldDisableView}
{@link #Preference_singleLineTitle net.kdt.pojavlaunch:singleLineTitle}
{@link #Preference_summary net.kdt.pojavlaunch:summary}
{@link #Preference_title net.kdt.pojavlaunch:title}
{@link #Preference_widgetLayout net.kdt.pojavlaunch:widgetLayout}
- @see #Preference_allowDividerAbove - @see #Preference_allowDividerBelow - @see #Preference_android_defaultValue - @see #Preference_android_dependency - @see #Preference_android_enabled - @see #Preference_android_fragment - @see #Preference_android_icon - @see #Preference_android_iconSpaceReserved - @see #Preference_android_key - @see #Preference_android_layout - @see #Preference_android_order - @see #Preference_android_persistent - @see #Preference_android_selectable - @see #Preference_android_shouldDisableView - @see #Preference_android_singleLineTitle - @see #Preference_android_summary - @see #Preference_android_title - @see #Preference_android_widgetLayout - @see #Preference_defaultValue - @see #Preference_dependency - @see #Preference_enabled - @see #Preference_fragment - @see #Preference_icon - @see #Preference_iconSpaceReserved - @see #Preference_key - @see #Preference_layout - @see #Preference_order - @see #Preference_persistent - @see #Preference_selectable - @see #Preference_shouldDisableView - @see #Preference_singleLineTitle - @see #Preference_summary - @see #Preference_title - @see #Preference_widgetLayout - */ - public static final int[] Preference = { - 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, - 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, - 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, - 0x010101ee, 0x010102e3, 0x0101055c, 0x01010561, - 0x7f01005e, 0x7f010064, 0x7f010123, 0x7f01015c, - 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, - 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, - 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, - 0x7f010169, 0x7f01016a - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAbove} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAbove - */ - public static final int Preference_allowDividerAbove = 30; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerBelow} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerBelow - */ - public static final int Preference_allowDividerBelow = 31; - /** -

This symbol is the offset where the {@link android.R.attr#defaultValue} - attribute's value can be found in the {@link #Preference} array. - @attr name android:defaultValue - */ - public static final int Preference_android_defaultValue = 11; - /** -

This symbol is the offset where the {@link android.R.attr#dependency} - attribute's value can be found in the {@link #Preference} array. - @attr name android:dependency - */ - public static final int Preference_android_dependency = 10; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #Preference} array. - @attr name android:enabled - */ - public static final int Preference_android_enabled = 2; - /** -

This symbol is the offset where the {@link android.R.attr#fragment} - attribute's value can be found in the {@link #Preference} array. - @attr name android:fragment - */ - public static final int Preference_android_fragment = 13; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #Preference} array. - @attr name android:icon - */ - public static final int Preference_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#iconSpaceReserved} - attribute's value can be found in the {@link #Preference} array. - @attr name android:iconSpaceReserved - */ - public static final int Preference_android_iconSpaceReserved = 15; - /** -

This symbol is the offset where the {@link android.R.attr#key} - attribute's value can be found in the {@link #Preference} array. - @attr name android:key - */ - public static final int Preference_android_key = 6; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #Preference} array. - @attr name android:layout - */ - public static final int Preference_android_layout = 3; - /** -

This symbol is the offset where the {@link android.R.attr#order} - attribute's value can be found in the {@link #Preference} array. - @attr name android:order - */ - public static final int Preference_android_order = 8; - /** -

This symbol is the offset where the {@link android.R.attr#persistent} - attribute's value can be found in the {@link #Preference} array. - @attr name android:persistent - */ - public static final int Preference_android_persistent = 1; - /** -

This symbol is the offset where the {@link android.R.attr#selectable} - attribute's value can be found in the {@link #Preference} array. - @attr name android:selectable - */ - public static final int Preference_android_selectable = 5; - /** -

This symbol is the offset where the {@link android.R.attr#shouldDisableView} - attribute's value can be found in the {@link #Preference} array. - @attr name android:shouldDisableView - */ - public static final int Preference_android_shouldDisableView = 12; - /** -

This symbol is the offset where the {@link android.R.attr#singleLineTitle} - attribute's value can be found in the {@link #Preference} array. - @attr name android:singleLineTitle - */ - public static final int Preference_android_singleLineTitle = 14; - /** -

This symbol is the offset where the {@link android.R.attr#summary} - attribute's value can be found in the {@link #Preference} array. - @attr name android:summary - */ - public static final int Preference_android_summary = 7; - /** -

This symbol is the offset where the {@link android.R.attr#title} - attribute's value can be found in the {@link #Preference} array. - @attr name android:title - */ - public static final int Preference_android_title = 4; - /** -

This symbol is the offset where the {@link android.R.attr#widgetLayout} - attribute's value can be found in the {@link #Preference} array. - @attr name android:widgetLayout - */ - public static final int Preference_android_widgetLayout = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultValue} - attribute's value can be found in the {@link #Preference} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". - @attr name net.kdt.pojavlaunch:defaultValue - */ - public static final int Preference_defaultValue = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dependency} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dependency - */ - public static final int Preference_dependency = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#enabled} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:enabled - */ - public static final int Preference_enabled = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fragment} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fragment - */ - public static final int Preference_fragment = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:icon - */ - public static final int Preference_icon = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconSpaceReserved} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconSpaceReserved - */ - public static final int Preference_iconSpaceReserved = 33; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#key} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:key - */ - public static final int Preference_key = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout - */ - public static final int Preference_layout = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#order} - attribute's value can be found in the {@link #Preference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:order - */ - public static final int Preference_order = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#persistent} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:persistent - */ - public static final int Preference_persistent = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectable} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:selectable - */ - public static final int Preference_selectable = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#shouldDisableView} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:shouldDisableView - */ - public static final int Preference_shouldDisableView = 29; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleLineTitle} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:singleLineTitle - */ - public static final int Preference_singleLineTitle = 32; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summary} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summary - */ - public static final int Preference_summary = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int Preference_title = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#widgetLayout} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:widgetLayout - */ - public static final int Preference_widgetLayout = 23; - /** Attributes that can be used with a PreferenceFragment. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceFragment_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragment_android_divider android:divider}
{@link #PreferenceFragment_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragment_android_layout android:layout}
- @see #PreferenceFragment_allowDividerAfterLastItem - @see #PreferenceFragment_android_divider - @see #PreferenceFragment_android_dividerHeight - @see #PreferenceFragment_android_layout - */ - public static final int[] PreferenceFragment = { - 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} - attribute's value can be found in the {@link #PreferenceFragment} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem - */ - public static final int PreferenceFragment_allowDividerAfterLastItem = 3; - /** -

This symbol is the offset where the {@link android.R.attr#divider} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:divider - */ - public static final int PreferenceFragment_android_divider = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dividerHeight} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:dividerHeight - */ - public static final int PreferenceFragment_android_dividerHeight = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:layout - */ - public static final int PreferenceFragment_android_layout = 0; - /** Attributes that can be used with a PreferenceFragmentCompat. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceFragmentCompat_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragmentCompat_android_divider android:divider}
{@link #PreferenceFragmentCompat_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragmentCompat_android_layout android:layout}
- @see #PreferenceFragmentCompat_allowDividerAfterLastItem - @see #PreferenceFragmentCompat_android_divider - @see #PreferenceFragmentCompat_android_dividerHeight - @see #PreferenceFragmentCompat_android_layout - */ - public static final int[] PreferenceFragmentCompat = { - 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem - */ - public static final int PreferenceFragmentCompat_allowDividerAfterLastItem = 3; - /** -

This symbol is the offset where the {@link android.R.attr#divider} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:divider - */ - public static final int PreferenceFragmentCompat_android_divider = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dividerHeight} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:dividerHeight - */ - public static final int PreferenceFragmentCompat_android_dividerHeight = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:layout - */ - public static final int PreferenceFragmentCompat_android_layout = 0; - /** Attributes that can be used with a PreferenceGroup. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #PreferenceGroup_android_orderingFromXml android:orderingFromXml}
{@link #PreferenceGroup_orderingFromXml net.kdt.pojavlaunch:orderingFromXml}
- @see #PreferenceGroup_android_orderingFromXml - @see #PreferenceGroup_orderingFromXml - */ - public static final int[] PreferenceGroup = { - 0x010101e7, 0x7f01016c - }; - /** -

This symbol is the offset where the {@link android.R.attr#orderingFromXml} - attribute's value can be found in the {@link #PreferenceGroup} array. - @attr name android:orderingFromXml - */ - public static final int PreferenceGroup_android_orderingFromXml = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#orderingFromXml} - attribute's value can be found in the {@link #PreferenceGroup} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:orderingFromXml - */ - public static final int PreferenceGroup_orderingFromXml = 1; - /** Attributes that can be used with a PreferenceImageView. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceImageView_android_maxHeight android:maxHeight}
{@link #PreferenceImageView_android_maxWidth android:maxWidth}
{@link #PreferenceImageView_maxHeight net.kdt.pojavlaunch:maxHeight}
{@link #PreferenceImageView_maxWidth net.kdt.pojavlaunch:maxWidth}
- @see #PreferenceImageView_android_maxHeight - @see #PreferenceImageView_android_maxWidth - @see #PreferenceImageView_maxHeight - @see #PreferenceImageView_maxWidth - */ - public static final int[] PreferenceImageView = { - 0x0101011f, 0x01010120, 0x7f01016d, 0x7f01016e - }; - /** -

This symbol is the offset where the {@link android.R.attr#maxHeight} - attribute's value can be found in the {@link #PreferenceImageView} array. - @attr name android:maxHeight - */ - public static final int PreferenceImageView_android_maxHeight = 1; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #PreferenceImageView} array. - @attr name android:maxWidth - */ - public static final int PreferenceImageView_android_maxWidth = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxHeight} - attribute's value can be found in the {@link #PreferenceImageView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxHeight - */ - public static final int PreferenceImageView_maxHeight = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxWidth} - attribute's value can be found in the {@link #PreferenceImageView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxWidth - */ - public static final int PreferenceImageView_maxWidth = 2; - /** Attributes that can be used with a PreferenceTheme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #PreferenceTheme_checkBoxPreferenceStyle net.kdt.pojavlaunch:checkBoxPreferenceStyle}
{@link #PreferenceTheme_dialogPreferenceStyle net.kdt.pojavlaunch:dialogPreferenceStyle}
{@link #PreferenceTheme_dropdownPreferenceStyle net.kdt.pojavlaunch:dropdownPreferenceStyle}
{@link #PreferenceTheme_editTextPreferenceStyle net.kdt.pojavlaunch:editTextPreferenceStyle}
{@link #PreferenceTheme_preferenceActivityStyle net.kdt.pojavlaunch:preferenceActivityStyle}
{@link #PreferenceTheme_preferenceCategoryStyle net.kdt.pojavlaunch:preferenceCategoryStyle}
{@link #PreferenceTheme_preferenceFragmentCompatStyle net.kdt.pojavlaunch:preferenceFragmentCompatStyle}
{@link #PreferenceTheme_preferenceFragmentListStyle net.kdt.pojavlaunch:preferenceFragmentListStyle}
{@link #PreferenceTheme_preferenceFragmentPaddingSide net.kdt.pojavlaunch:preferenceFragmentPaddingSide}
{@link #PreferenceTheme_preferenceFragmentStyle net.kdt.pojavlaunch:preferenceFragmentStyle}
{@link #PreferenceTheme_preferenceHeaderPanelStyle net.kdt.pojavlaunch:preferenceHeaderPanelStyle}
{@link #PreferenceTheme_preferenceInformationStyle net.kdt.pojavlaunch:preferenceInformationStyle}
{@link #PreferenceTheme_preferenceLayoutChild net.kdt.pojavlaunch:preferenceLayoutChild}
{@link #PreferenceTheme_preferenceListStyle net.kdt.pojavlaunch:preferenceListStyle}
{@link #PreferenceTheme_preferencePanelStyle net.kdt.pojavlaunch:preferencePanelStyle}
{@link #PreferenceTheme_preferenceScreenStyle net.kdt.pojavlaunch:preferenceScreenStyle}
{@link #PreferenceTheme_preferenceStyle net.kdt.pojavlaunch:preferenceStyle}
{@link #PreferenceTheme_preferenceTheme net.kdt.pojavlaunch:preferenceTheme}
{@link #PreferenceTheme_ringtonePreferenceStyle net.kdt.pojavlaunch:ringtonePreferenceStyle}
{@link #PreferenceTheme_seekBarPreferenceStyle net.kdt.pojavlaunch:seekBarPreferenceStyle}
{@link #PreferenceTheme_switchPreferenceCompatStyle net.kdt.pojavlaunch:switchPreferenceCompatStyle}
{@link #PreferenceTheme_switchPreferenceStyle net.kdt.pojavlaunch:switchPreferenceStyle}
{@link #PreferenceTheme_yesNoPreferenceStyle net.kdt.pojavlaunch:yesNoPreferenceStyle}
- @see #PreferenceTheme_checkBoxPreferenceStyle - @see #PreferenceTheme_dialogPreferenceStyle - @see #PreferenceTheme_dropdownPreferenceStyle - @see #PreferenceTheme_editTextPreferenceStyle - @see #PreferenceTheme_preferenceActivityStyle - @see #PreferenceTheme_preferenceCategoryStyle - @see #PreferenceTheme_preferenceFragmentCompatStyle - @see #PreferenceTheme_preferenceFragmentListStyle - @see #PreferenceTheme_preferenceFragmentPaddingSide - @see #PreferenceTheme_preferenceFragmentStyle - @see #PreferenceTheme_preferenceHeaderPanelStyle - @see #PreferenceTheme_preferenceInformationStyle - @see #PreferenceTheme_preferenceLayoutChild - @see #PreferenceTheme_preferenceListStyle - @see #PreferenceTheme_preferencePanelStyle - @see #PreferenceTheme_preferenceScreenStyle - @see #PreferenceTheme_preferenceStyle - @see #PreferenceTheme_preferenceTheme - @see #PreferenceTheme_ringtonePreferenceStyle - @see #PreferenceTheme_seekBarPreferenceStyle - @see #PreferenceTheme_switchPreferenceCompatStyle - @see #PreferenceTheme_switchPreferenceStyle - @see #PreferenceTheme_yesNoPreferenceStyle - */ - public static final int[] PreferenceTheme = { - 0x7f01016f, 0x7f010170, 0x7f010171, 0x7f010172, - 0x7f010173, 0x7f010174, 0x7f010175, 0x7f010176, - 0x7f010177, 0x7f010178, 0x7f010179, 0x7f01017a, - 0x7f01017b, 0x7f01017c, 0x7f01017d, 0x7f01017e, - 0x7f01017f, 0x7f010180, 0x7f010181, 0x7f010182, - 0x7f010183, 0x7f010184, 0x7f010185 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkBoxPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkBoxPreferenceStyle - */ - public static final int PreferenceTheme_checkBoxPreferenceStyle = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogPreferenceStyle - */ - public static final int PreferenceTheme_dialogPreferenceStyle = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dropdownPreferenceStyle - */ - public static final int PreferenceTheme_dropdownPreferenceStyle = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextPreferenceStyle - */ - public static final int PreferenceTheme_editTextPreferenceStyle = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceActivityStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceActivityStyle - */ - public static final int PreferenceTheme_preferenceActivityStyle = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceCategoryStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceCategoryStyle - */ - public static final int PreferenceTheme_preferenceCategoryStyle = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentCompatStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentCompatStyle - */ - public static final int PreferenceTheme_preferenceFragmentCompatStyle = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentListStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentListStyle - */ - public static final int PreferenceTheme_preferenceFragmentListStyle = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentPaddingSide} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:preferenceFragmentPaddingSide - */ - public static final int PreferenceTheme_preferenceFragmentPaddingSide = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentStyle - */ - public static final int PreferenceTheme_preferenceFragmentStyle = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceHeaderPanelStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceHeaderPanelStyle - */ - public static final int PreferenceTheme_preferenceHeaderPanelStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceInformationStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceInformationStyle - */ - public static final int PreferenceTheme_preferenceInformationStyle = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceLayoutChild} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceLayoutChild - */ - public static final int PreferenceTheme_preferenceLayoutChild = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceListStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceListStyle - */ - public static final int PreferenceTheme_preferenceListStyle = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferencePanelStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferencePanelStyle - */ - public static final int PreferenceTheme_preferencePanelStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceScreenStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceScreenStyle - */ - public static final int PreferenceTheme_preferenceScreenStyle = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceStyle - */ - public static final int PreferenceTheme_preferenceStyle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceTheme} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceTheme - */ - public static final int PreferenceTheme_preferenceTheme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ringtonePreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ringtonePreferenceStyle - */ - public static final int PreferenceTheme_ringtonePreferenceStyle = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:seekBarPreferenceStyle - */ - public static final int PreferenceTheme_seekBarPreferenceStyle = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceCompatStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchPreferenceCompatStyle - */ - public static final int PreferenceTheme_switchPreferenceCompatStyle = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchPreferenceStyle - */ - public static final int PreferenceTheme_switchPreferenceStyle = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#yesNoPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:yesNoPreferenceStyle - */ - public static final int PreferenceTheme_yesNoPreferenceStyle = 9; - /** Attributes that can be used with a RecycleListView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
- @see #RecycleListView_paddingBottomNoButtons - @see #RecycleListView_paddingTopNoTitle - */ - public static final int[] RecycleListView = { - 0x7f010121, 0x7f010122 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} - attribute's value can be found in the {@link #RecycleListView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingBottomNoButtons - */ - public static final int RecycleListView_paddingBottomNoButtons = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} - attribute's value can be found in the {@link #RecycleListView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingTopNoTitle - */ - public static final int RecycleListView_paddingTopNoTitle = 1; - /** Attributes that can be used with a RecyclerView. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
- @see #RecyclerView_android_descendantFocusability - @see #RecyclerView_android_orientation - @see #RecyclerView_fastScrollEnabled - @see #RecyclerView_fastScrollHorizontalThumbDrawable - @see #RecyclerView_fastScrollHorizontalTrackDrawable - @see #RecyclerView_fastScrollVerticalThumbDrawable - @see #RecyclerView_fastScrollVerticalTrackDrawable - @see #RecyclerView_layoutManager - @see #RecyclerView_reverseLayout - @see #RecyclerView_spanCount - @see #RecyclerView_stackFromEnd - */ - public static final int[] RecyclerView = { - 0x010100c4, 0x010100f1, 0x7f010052, 0x7f010053, - 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, - 0x7f010058, 0x7f010059, 0x7f01005a - }; - /** -

This symbol is the offset where the {@link android.R.attr#descendantFocusability} - attribute's value can be found in the {@link #RecyclerView} array. - @attr name android:descendantFocusability - */ - public static final int RecyclerView_android_descendantFocusability = 1; - /** -

This symbol is the offset where the {@link android.R.attr#orientation} - attribute's value can be found in the {@link #RecyclerView} array. - @attr name android:orientation - */ - public static final int RecyclerView_android_orientation = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fastScrollEnabled - */ - public static final int RecyclerView_fastScrollEnabled = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable - */ - public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable - */ - public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable - */ - public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable - */ - public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layoutManager - */ - public static final int RecyclerView_layoutManager = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:reverseLayout - */ - public static final int RecyclerView_reverseLayout = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:spanCount - */ - public static final int RecyclerView_spanCount = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:stackFromEnd - */ - public static final int RecyclerView_stackFromEnd = 5; - /** Attributes that can be used with a ScrimInsetsFrameLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
- @see #ScrimInsetsFrameLayout_insetForeground - */ - public static final int[] ScrimInsetsFrameLayout = { - 0x7f010031 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} - attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:insetForeground - */ - public static final int ScrimInsetsFrameLayout_insetForeground = 0; - /** Attributes that can be used with a ScrollingViewBehavior_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
- @see #ScrollingViewBehavior_Layout_behavior_overlapTop - */ - public static final int[] ScrollingViewBehavior_Layout = { - 0x7f010032 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} - attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_overlapTop - */ - public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; - /** Attributes that can be used with a SearchView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
- @see #SearchView_android_focusable - @see #SearchView_android_imeOptions - @see #SearchView_android_inputType - @see #SearchView_android_maxWidth - @see #SearchView_closeIcon - @see #SearchView_commitIcon - @see #SearchView_defaultQueryHint - @see #SearchView_goIcon - @see #SearchView_iconifiedByDefault - @see #SearchView_layout - @see #SearchView_queryBackground - @see #SearchView_queryHint - @see #SearchView_searchHintIcon - @see #SearchView_searchIcon - @see #SearchView_submitBackground - @see #SearchView_suggestionRowLayout - @see #SearchView_voiceIcon - */ - public static final int[] SearchView = { - 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, - 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, - 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, - 0x7f01012f - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:focusable - */ - public static final int SearchView_android_focusable = 0; - /** -

This symbol is the offset where the {@link android.R.attr#imeOptions} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions = 3; - /** -

This symbol is the offset where the {@link android.R.attr#inputType} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:inputType - */ - public static final int SearchView_android_inputType = 2; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:closeIcon - */ - public static final int SearchView_closeIcon = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:commitIcon - */ - public static final int SearchView_commitIcon = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:defaultQueryHint - */ - public static final int SearchView_defaultQueryHint = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:goIcon - */ - public static final int SearchView_goIcon = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout - */ - public static final int SearchView_layout = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:queryBackground - */ - public static final int SearchView_queryBackground = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:queryHint - */ - public static final int SearchView_queryHint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchHintIcon - */ - public static final int SearchView_searchHintIcon = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchIcon - */ - public static final int SearchView_searchIcon = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:submitBackground - */ - public static final int SearchView_submitBackground = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:suggestionRowLayout - */ - public static final int SearchView_suggestionRowLayout = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:voiceIcon - */ - public static final int SearchView_voiceIcon = 12; - /** Attributes that can be used with a SeekBarPreference. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #SeekBarPreference_adjustable net.kdt.pojavlaunch:adjustable}
{@link #SeekBarPreference_android_layout android:layout}
{@link #SeekBarPreference_android_max android:max}
{@link #SeekBarPreference_min net.kdt.pojavlaunch:min}
{@link #SeekBarPreference_seekBarIncrement net.kdt.pojavlaunch:seekBarIncrement}
{@link #SeekBarPreference_showSeekBarValue net.kdt.pojavlaunch:showSeekBarValue}
- @see #SeekBarPreference_adjustable - @see #SeekBarPreference_android_layout - @see #SeekBarPreference_android_max - @see #SeekBarPreference_min - @see #SeekBarPreference_seekBarIncrement - @see #SeekBarPreference_showSeekBarValue - */ - public static final int[] SeekBarPreference = { - 0x010100f2, 0x01010136, 0x7f010186, 0x7f010187, - 0x7f010188, 0x7f010189 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#adjustable} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:adjustable - */ - public static final int SeekBarPreference_adjustable = 4; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #SeekBarPreference} array. - @attr name android:layout - */ - public static final int SeekBarPreference_android_layout = 0; - /** -

This symbol is the offset where the {@link android.R.attr#max} - attribute's value can be found in the {@link #SeekBarPreference} array. - @attr name android:max - */ - public static final int SeekBarPreference_android_max = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#min} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:min - */ - public static final int SeekBarPreference_min = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarIncrement} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:seekBarIncrement - */ - public static final int SeekBarPreference_seekBarIncrement = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showSeekBarValue} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showSeekBarValue - */ - public static final int SeekBarPreference_showSeekBarValue = 5; - /** Attributes that can be used with a SnackbarLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
- @see #SnackbarLayout_android_maxWidth - @see #SnackbarLayout_elevation - @see #SnackbarLayout_maxActionInlineWidth - */ - public static final int[] SnackbarLayout = { - 0x0101011f, 0x7f010033, 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #SnackbarLayout} array. - @attr name android:maxWidth - */ - public static final int SnackbarLayout_android_maxWidth = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #SnackbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int SnackbarLayout_elevation = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} - attribute's value can be found in the {@link #SnackbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxActionInlineWidth - */ - public static final int SnackbarLayout_maxActionInlineWidth = 1; - /** Attributes that can be used with a Spinner. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
- @see #Spinner_android_dropDownWidth - @see #Spinner_android_entries - @see #Spinner_android_popupBackground - @see #Spinner_android_prompt - @see #Spinner_popupTheme - */ - public static final int[] Spinner = { - 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, - 0x7f010078 - }; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownWidth} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth = 3; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:entries - */ - public static final int Spinner_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground = 1; - /** -

This symbol is the offset where the {@link android.R.attr#prompt} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:prompt - */ - public static final int Spinner_android_prompt = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int Spinner_popupTheme = 4; - /** Attributes that can be used with a SwitchCompat. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
- @see #SwitchCompat_android_textOff - @see #SwitchCompat_android_textOn - @see #SwitchCompat_android_thumb - @see #SwitchCompat_showText - @see #SwitchCompat_splitTrack - @see #SwitchCompat_switchMinWidth - @see #SwitchCompat_switchPadding - @see #SwitchCompat_switchTextAppearance - @see #SwitchCompat_thumbTextPadding - @see #SwitchCompat_thumbTint - @see #SwitchCompat_thumbTintMode - @see #SwitchCompat_track - @see #SwitchCompat_trackTint - @see #SwitchCompat_trackTintMode - */ - public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f010130, - 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, - 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, - 0x7f010139, 0x7f01013a - }; - /** -

This symbol is the offset where the {@link android.R.attr#textOff} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOff - */ - public static final int SwitchCompat_android_textOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textOn} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOn - */ - public static final int SwitchCompat_android_textOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#thumb} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:thumb - */ - public static final int SwitchCompat_android_thumb = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showText - */ - public static final int SwitchCompat_showText = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:splitTrack - */ - public static final int SwitchCompat_splitTrack = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchMinWidth - */ - public static final int SwitchCompat_switchMinWidth = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchPadding - */ - public static final int SwitchCompat_switchPadding = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchTextAppearance - */ - public static final int SwitchCompat_switchTextAppearance = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thumbTextPadding - */ - public static final int SwitchCompat_thumbTextPadding = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thumbTint - */ - public static final int SwitchCompat_thumbTint = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:thumbTintMode - */ - public static final int SwitchCompat_thumbTintMode = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:track - */ - public static final int SwitchCompat_track = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:trackTint - */ - public static final int SwitchCompat_trackTint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:trackTintMode - */ - public static final int SwitchCompat_trackTintMode = 7; - /** Attributes that can be used with a SwitchPreference. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchPreference_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreference_android_summaryOff android:summaryOff}
{@link #SwitchPreference_android_summaryOn android:summaryOn}
{@link #SwitchPreference_android_switchTextOff android:switchTextOff}
{@link #SwitchPreference_android_switchTextOn android:switchTextOn}
{@link #SwitchPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreference_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreference_switchTextOn net.kdt.pojavlaunch:switchTextOn}
- @see #SwitchPreference_android_disableDependentsState - @see #SwitchPreference_android_summaryOff - @see #SwitchPreference_android_summaryOn - @see #SwitchPreference_android_switchTextOff - @see #SwitchPreference_android_switchTextOn - @see #SwitchPreference_disableDependentsState - @see #SwitchPreference_summaryOff - @see #SwitchPreference_summaryOn - @see #SwitchPreference_switchTextOff - @see #SwitchPreference_switchTextOn - */ - public static final int[] SwitchPreference = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, - 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, - 0x7f01018a, 0x7f01018b - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:disableDependentsState - */ - public static final int SwitchPreference_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:summaryOff - */ - public static final int SwitchPreference_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:summaryOn - */ - public static final int SwitchPreference_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:switchTextOff - */ - public static final int SwitchPreference_android_switchTextOff = 4; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:switchTextOn - */ - public static final int SwitchPreference_android_switchTextOn = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int SwitchPreference_disableDependentsState = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int SwitchPreference_summaryOff = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int SwitchPreference_summaryOn = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOff - */ - public static final int SwitchPreference_switchTextOff = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOn - */ - public static final int SwitchPreference_switchTextOn = 8; - /** Attributes that can be used with a SwitchPreferenceCompat. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchPreferenceCompat_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreferenceCompat_android_summaryOff android:summaryOff}
{@link #SwitchPreferenceCompat_android_summaryOn android:summaryOn}
{@link #SwitchPreferenceCompat_android_switchTextOff android:switchTextOff}
{@link #SwitchPreferenceCompat_android_switchTextOn android:switchTextOn}
{@link #SwitchPreferenceCompat_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreferenceCompat_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreferenceCompat_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreferenceCompat_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreferenceCompat_switchTextOn net.kdt.pojavlaunch:switchTextOn}
- @see #SwitchPreferenceCompat_android_disableDependentsState - @see #SwitchPreferenceCompat_android_summaryOff - @see #SwitchPreferenceCompat_android_summaryOn - @see #SwitchPreferenceCompat_android_switchTextOff - @see #SwitchPreferenceCompat_android_switchTextOn - @see #SwitchPreferenceCompat_disableDependentsState - @see #SwitchPreferenceCompat_summaryOff - @see #SwitchPreferenceCompat_summaryOn - @see #SwitchPreferenceCompat_switchTextOff - @see #SwitchPreferenceCompat_switchTextOn - */ - public static final int[] SwitchPreferenceCompat = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, - 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, - 0x7f01018a, 0x7f01018b - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:disableDependentsState - */ - public static final int SwitchPreferenceCompat_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:summaryOff - */ - public static final int SwitchPreferenceCompat_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:summaryOn - */ - public static final int SwitchPreferenceCompat_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:switchTextOff - */ - public static final int SwitchPreferenceCompat_android_switchTextOff = 4; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:switchTextOn - */ - public static final int SwitchPreferenceCompat_android_switchTextOn = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int SwitchPreferenceCompat_disableDependentsState = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int SwitchPreferenceCompat_summaryOff = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int SwitchPreferenceCompat_summaryOn = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOff - */ - public static final int SwitchPreferenceCompat_switchTextOff = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOn - */ - public static final int SwitchPreferenceCompat_switchTextOn = 8; - /** Attributes that can be used with a TabItem. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
- @see #TabItem_android_icon - @see #TabItem_android_layout - @see #TabItem_android_text - */ - public static final int[] TabItem = { - 0x01010002, 0x010100f2, 0x0101014f - }; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:icon - */ - public static final int TabItem_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:layout - */ - public static final int TabItem_android_layout = 1; - /** -

This symbol is the offset where the {@link android.R.attr#text} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:text - */ - public static final int TabItem_android_text = 2; - /** Attributes that can be used with a TabLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
- @see #TabLayout_tabBackground - @see #TabLayout_tabContentStart - @see #TabLayout_tabGravity - @see #TabLayout_tabIndicatorColor - @see #TabLayout_tabIndicatorHeight - @see #TabLayout_tabMaxWidth - @see #TabLayout_tabMinWidth - @see #TabLayout_tabMode - @see #TabLayout_tabPadding - @see #TabLayout_tabPaddingBottom - @see #TabLayout_tabPaddingEnd - @see #TabLayout_tabPaddingStart - @see #TabLayout_tabPaddingTop - @see #TabLayout_tabSelectedTextColor - @see #TabLayout_tabTextAppearance - @see #TabLayout_tabTextColor - */ - public static final int[] TabLayout = { - 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, - 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, - 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, - 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tabBackground - */ - public static final int TabLayout_tabBackground = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabContentStart - */ - public static final int TabLayout_tabContentStart = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
fill0
center1
- @attr name net.kdt.pojavlaunch:tabGravity - */ - public static final int TabLayout_tabGravity = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabIndicatorColor - */ - public static final int TabLayout_tabIndicatorColor = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabIndicatorHeight - */ - public static final int TabLayout_tabIndicatorHeight = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabMaxWidth - */ - public static final int TabLayout_tabMaxWidth = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabMinWidth - */ - public static final int TabLayout_tabMinWidth = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
scrollable0
fixed1
- @attr name net.kdt.pojavlaunch:tabMode - */ - public static final int TabLayout_tabMode = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPadding - */ - public static final int TabLayout_tabPadding = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingBottom - */ - public static final int TabLayout_tabPaddingBottom = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingEnd - */ - public static final int TabLayout_tabPaddingEnd = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingStart - */ - public static final int TabLayout_tabPaddingStart = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingTop - */ - public static final int TabLayout_tabPaddingTop = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabSelectedTextColor - */ - public static final int TabLayout_tabSelectedTextColor = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tabTextAppearance - */ - public static final int TabLayout_tabTextAppearance = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabTextColor - */ - public static final int TabLayout_tabTextColor = 9; - /** Attributes that can be used with a TextAppearance. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
- @see #TextAppearance_android_fontFamily - @see #TextAppearance_android_shadowColor - @see #TextAppearance_android_shadowDx - @see #TextAppearance_android_shadowDy - @see #TextAppearance_android_shadowRadius - @see #TextAppearance_android_textColor - @see #TextAppearance_android_textColorHint - @see #TextAppearance_android_textColorLink - @see #TextAppearance_android_textSize - @see #TextAppearance_android_textStyle - @see #TextAppearance_android_typeface - @see #TextAppearance_fontFamily - @see #TextAppearance_textAllCaps - */ - public static final int[] TextAppearance = { - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, - 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, - 0x7f01008e - }; - /** -

This symbol is the offset where the {@link android.R.attr#fontFamily} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:fontFamily - */ - public static final int TextAppearance_android_fontFamily = 10; - /** -

This symbol is the offset where the {@link android.R.attr#shadowColor} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowColor - */ - public static final int TextAppearance_android_shadowColor = 6; - /** -

This symbol is the offset where the {@link android.R.attr#shadowDx} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowDx - */ - public static final int TextAppearance_android_shadowDx = 7; - /** -

This symbol is the offset where the {@link android.R.attr#shadowDy} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowDy - */ - public static final int TextAppearance_android_shadowDy = 8; - /** -

This symbol is the offset where the {@link android.R.attr#shadowRadius} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowRadius - */ - public static final int TextAppearance_android_shadowRadius = 9; - /** -

This symbol is the offset where the {@link android.R.attr#textColor} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColor - */ - public static final int TextAppearance_android_textColor = 3; - /** -

This symbol is the offset where the {@link android.R.attr#textColorHint} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColorHint - */ - public static final int TextAppearance_android_textColorHint = 4; - /** -

This symbol is the offset where the {@link android.R.attr#textColorLink} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColorLink - */ - public static final int TextAppearance_android_textColorLink = 5; - /** -

This symbol is the offset where the {@link android.R.attr#textSize} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textSize - */ - public static final int TextAppearance_android_textSize = 0; - /** -

This symbol is the offset where the {@link android.R.attr#textStyle} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textStyle - */ - public static final int TextAppearance_android_textStyle = 2; - /** -

This symbol is the offset where the {@link android.R.attr#typeface} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:typeface - */ - public static final int TextAppearance_android_typeface = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} - attribute's value can be found in the {@link #TextAppearance} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontFamily - */ - public static final int TextAppearance_fontFamily = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} - attribute's value can be found in the {@link #TextAppearance} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name net.kdt.pojavlaunch:textAllCaps - */ - public static final int TextAppearance_textAllCaps = 11; - /** Attributes that can be used with a TextInputLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
- @see #TextInputLayout_android_hint - @see #TextInputLayout_android_textColorHint - @see #TextInputLayout_counterEnabled - @see #TextInputLayout_counterMaxLength - @see #TextInputLayout_counterOverflowTextAppearance - @see #TextInputLayout_counterTextAppearance - @see #TextInputLayout_errorEnabled - @see #TextInputLayout_errorTextAppearance - @see #TextInputLayout_hintAnimationEnabled - @see #TextInputLayout_hintEnabled - @see #TextInputLayout_hintTextAppearance - @see #TextInputLayout_passwordToggleContentDescription - @see #TextInputLayout_passwordToggleDrawable - @see #TextInputLayout_passwordToggleEnabled - @see #TextInputLayout_passwordToggleTint - @see #TextInputLayout_passwordToggleTintMode - */ - public static final int[] TextInputLayout = { - 0x0101009a, 0x01010150, 0x7f010044, 0x7f010045, - 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, - 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, - 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051 - }; - /** -

This symbol is the offset where the {@link android.R.attr#hint} - attribute's value can be found in the {@link #TextInputLayout} array. - @attr name android:hint - */ - public static final int TextInputLayout_android_hint = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textColorHint} - attribute's value can be found in the {@link #TextInputLayout} array. - @attr name android:textColorHint - */ - public static final int TextInputLayout_android_textColorHint = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:counterEnabled - */ - public static final int TextInputLayout_counterEnabled = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:counterMaxLength - */ - public static final int TextInputLayout_counterMaxLength = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance - */ - public static final int TextInputLayout_counterOverflowTextAppearance = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:counterTextAppearance - */ - public static final int TextInputLayout_counterTextAppearance = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:errorEnabled - */ - public static final int TextInputLayout_errorEnabled = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:errorTextAppearance - */ - public static final int TextInputLayout_errorTextAppearance = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hintAnimationEnabled - */ - public static final int TextInputLayout_hintAnimationEnabled = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hintEnabled - */ - public static final int TextInputLayout_hintEnabled = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:hintTextAppearance - */ - public static final int TextInputLayout_hintTextAppearance = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleContentDescription - */ - public static final int TextInputLayout_passwordToggleContentDescription = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:passwordToggleDrawable - */ - public static final int TextInputLayout_passwordToggleDrawable = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleEnabled - */ - public static final int TextInputLayout_passwordToggleEnabled = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleTint - */ - public static final int TextInputLayout_passwordToggleTint = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:passwordToggleTintMode - */ - public static final int TextInputLayout_passwordToggleTintMode = 15; - /** Attributes that can be used with a Toolbar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
- @see #Toolbar_android_gravity - @see #Toolbar_android_minHeight - @see #Toolbar_buttonGravity - @see #Toolbar_collapseContentDescription - @see #Toolbar_collapseIcon - @see #Toolbar_contentInsetEnd - @see #Toolbar_contentInsetEndWithActions - @see #Toolbar_contentInsetLeft - @see #Toolbar_contentInsetRight - @see #Toolbar_contentInsetStart - @see #Toolbar_contentInsetStartWithNavigation - @see #Toolbar_logo - @see #Toolbar_logoDescription - @see #Toolbar_maxButtonHeight - @see #Toolbar_navigationContentDescription - @see #Toolbar_navigationIcon - @see #Toolbar_popupTheme - @see #Toolbar_subtitle - @see #Toolbar_subtitleTextAppearance - @see #Toolbar_subtitleTextColor - @see #Toolbar_title - @see #Toolbar_titleMargin - @see #Toolbar_titleMarginBottom - @see #Toolbar_titleMarginEnd - @see #Toolbar_titleMarginStart - @see #Toolbar_titleMarginTop - @see #Toolbar_titleMargins - @see #Toolbar_titleTextAppearance - @see #Toolbar_titleTextColor - */ - public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, - 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, - 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, - 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, - 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, - 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, - 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, - 0x7f01014b - }; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:gravity - */ - public static final int Toolbar_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:minHeight - */ - public static final int Toolbar_android_minHeight = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - -
ConstantValueDescription
top0x30
bottom0x50
- @attr name net.kdt.pojavlaunch:buttonGravity - */ - public static final int Toolbar_buttonGravity = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:collapseContentDescription - */ - public static final int Toolbar_collapseContentDescription = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:collapseIcon - */ - public static final int Toolbar_collapseIcon = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEnd - */ - public static final int Toolbar_contentInsetEnd = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEndWithActions - */ - public static final int Toolbar_contentInsetEndWithActions = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetLeft - */ - public static final int Toolbar_contentInsetLeft = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetRight - */ - public static final int Toolbar_contentInsetRight = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStart - */ - public static final int Toolbar_contentInsetStart = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation - */ - public static final int Toolbar_contentInsetStartWithNavigation = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:logo - */ - public static final int Toolbar_logo = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:logoDescription - */ - public static final int Toolbar_logoDescription = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxButtonHeight - */ - public static final int Toolbar_maxButtonHeight = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:navigationContentDescription - */ - public static final int Toolbar_navigationContentDescription = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:navigationIcon - */ - public static final int Toolbar_navigationIcon = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int Toolbar_popupTheme = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitle - */ - public static final int Toolbar_subtitle = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextAppearance - */ - public static final int Toolbar_subtitleTextAppearance = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitleTextColor - */ - public static final int Toolbar_subtitleTextColor = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int Toolbar_title = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMargin - */ - public static final int Toolbar_titleMargin = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginBottom - */ - public static final int Toolbar_titleMarginBottom = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginEnd - */ - public static final int Toolbar_titleMarginEnd = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginStart - */ - public static final int Toolbar_titleMarginStart = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginTop - */ - public static final int Toolbar_titleMarginTop = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMargins - */ - public static final int Toolbar_titleMargins = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextAppearance - */ - public static final int Toolbar_titleTextAppearance = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleTextColor - */ - public static final int Toolbar_titleTextColor = 27; - /** Attributes that can be used with a View. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
- @see #View_android_focusable - @see #View_android_theme - @see #View_paddingEnd - @see #View_paddingStart - @see #View_theme - */ - public static final int[] View = { - 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, - 0x7f01014e - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #View} array. - @attr name android:focusable - */ - public static final int View_android_focusable = 1; - /** -

This symbol is the offset where the {@link android.R.attr#theme} - attribute's value can be found in the {@link #View} array. - @attr name android:theme - */ - public static final int View_android_theme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingEnd - */ - public static final int View_paddingEnd = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingStart - */ - public static final int View_paddingStart = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} - attribute's value can be found in the {@link #View} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:theme - */ - public static final int View_theme = 4; - /** Attributes that can be used with a ViewBackgroundHelper. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
- @see #ViewBackgroundHelper_android_background - @see #ViewBackgroundHelper_backgroundTint - @see #ViewBackgroundHelper_backgroundTintMode - */ - public static final int[] ViewBackgroundHelper = { - 0x010100d4, 0x7f01014f, 0x7f010150 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - @attr name android:background - */ - public static final int ViewBackgroundHelper_android_background = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:backgroundTint - */ - public static final int ViewBackgroundHelper_backgroundTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:backgroundTintMode - */ - public static final int ViewBackgroundHelper_backgroundTintMode = 2; - /** Attributes that can be used with a ViewStubCompat. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
- @see #ViewStubCompat_android_id - @see #ViewStubCompat_android_inflatedId - @see #ViewStubCompat_android_layout - */ - public static final int[] ViewStubCompat = { - 0x010100d0, 0x010100f2, 0x010100f3 - }; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:id - */ - public static final int ViewStubCompat_android_id = 0; - /** -

This symbol is the offset where the {@link android.R.attr#inflatedId} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:inflatedId - */ - public static final int ViewStubCompat_android_inflatedId = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:layout - */ - public static final int ViewStubCompat_android_layout = 1; - }; -} diff --git a/app/build/gen/android/support/v7/preference/R.java b/app/build/gen/android/support/v7/preference/R.java deleted file mode 100644 index ad2bdf7e4..000000000 --- a/app/build/gen/android/support/v7/preference/R.java +++ /dev/null @@ -1,13342 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package android.support.v7.preference; - -public final class R { - public static final class anim { - public static final int abc_fade_in=0x7f040000; - public static final int abc_fade_out=0x7f040001; - public static final int abc_grow_fade_in_from_bottom=0x7f040002; - public static final int abc_popup_enter=0x7f040003; - public static final int abc_popup_exit=0x7f040004; - public static final int abc_shrink_fade_out_from_bottom=0x7f040005; - public static final int abc_slide_in_bottom=0x7f040006; - public static final int abc_slide_in_top=0x7f040007; - public static final int abc_slide_out_bottom=0x7f040008; - public static final int abc_slide_out_top=0x7f040009; - public static final int design_bottom_sheet_slide_in=0x7f04000a; - public static final int design_bottom_sheet_slide_out=0x7f04000b; - public static final int design_snackbar_in=0x7f04000c; - public static final int design_snackbar_out=0x7f04000d; - public static final int tooltip_enter=0x7f04000e; - public static final int tooltip_exit=0x7f04000f; - public static final int translate_left_side=0x7f040010; - public static final int translate_right_side=0x7f040011; - } - public static final class animator { - public static final int design_appbar_state_list_animator=0x7f050000; - } - public static final class array { - public static final int mcl_options=0x7f0e0000; - } - public static final class attr { - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarDivider=0x7f0100a4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarItemBackground=0x7f0100a5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarPopupTheme=0x7f01009e; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- */ - public static final int actionBarSize=0x7f0100a3; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarSplitStyle=0x7f0100a0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarStyle=0x7f01009f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabBarStyle=0x7f01009a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabStyle=0x7f010099; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabTextStyle=0x7f01009b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTheme=0x7f0100a1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarWidgetTheme=0x7f0100a2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionButtonStyle=0x7f0100bf; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionDropDownStyle=0x7f0100bb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionLayout=0x7f010116; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionMenuTextAppearance=0x7f0100a6; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int actionMenuTextColor=0x7f0100a7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeBackground=0x7f0100aa; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseButtonStyle=0x7f0100a9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseDrawable=0x7f0100ac; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCopyDrawable=0x7f0100ae; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCutDrawable=0x7f0100ad; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeFindDrawable=0x7f0100b2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePasteDrawable=0x7f0100af; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePopupWindowStyle=0x7f0100b4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSelectAllDrawable=0x7f0100b0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeShareDrawable=0x7f0100b1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSplitBackground=0x7f0100ab; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeStyle=0x7f0100a8; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeWebSearchDrawable=0x7f0100b3; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionOverflowButtonStyle=0x7f01009c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionOverflowMenuStyle=0x7f01009d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int actionProviderClass=0x7f010118; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int actionViewClass=0x7f010117; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityChooserViewStyle=0x7f0100c7; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int adjustable=0x7f010188; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogButtonGroupStyle=0x7f0100ec; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int alertDialogCenterButtons=0x7f0100ed; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogStyle=0x7f0100eb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogTheme=0x7f0100ee; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerAbove=0x7f010167; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerAfterLastItem=0x7f01016b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowDividerBelow=0x7f010168; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int allowStacking=0x7f010104; - /**

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int alpha=0x7f010105; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- */ - public static final int alphabeticModifiers=0x7f010113; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int arrowHeadLength=0x7f01010c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int arrowShaftLength=0x7f01010d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoCompleteTextViewStyle=0x7f0100f3; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeMaxTextSize=0x7f01008d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeMinTextSize=0x7f01008c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoSizePresetSizes=0x7f01008b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int autoSizeStepGranularity=0x7f01008a; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
none0
uniform1
- */ - public static final int autoSizeTextType=0x7f010089; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int background=0x7f010067; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int backgroundSplit=0x7f010069; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int backgroundStacked=0x7f010068; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int backgroundTint=0x7f01014f; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int backgroundTintMode=0x7f010150; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int barLength=0x7f01010e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_autoHide=0x7f010029; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_hideable=0x7f010006; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_overlapTop=0x7f010032; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
auto-1
- */ - public static final int behavior_peekHeight=0x7f010005; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int behavior_skipCollapsed=0x7f010007; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int borderWidth=0x7f010027; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int borderlessButtonStyle=0x7f0100c4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int bottomSheetDialogTheme=0x7f010021; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int bottomSheetStyle=0x7f010022; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarButtonStyle=0x7f0100c1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarNegativeButtonStyle=0x7f0100f1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarNeutralButtonStyle=0x7f0100f2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarPositiveButtonStyle=0x7f0100f0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarStyle=0x7f0100c0; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - -
ConstantValueDescription
top0x30
bottom0x50
- */ - public static final int buttonGravity=0x7f010144; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonPanelSideLayout=0x7f01007c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyle=0x7f0100f4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyleSmall=0x7f0100f5; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int buttonTint=0x7f010106; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int buttonTintMode=0x7f010107; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkBoxPreferenceStyle=0x7f010177; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkboxStyle=0x7f0100f6; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkedTextViewStyle=0x7f0100f7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int closeIcon=0x7f010127; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int closeItemLayout=0x7f010079; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int collapseContentDescription=0x7f010146; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int collapseIcon=0x7f010145; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- */ - public static final int collapsedTitleGravity=0x7f010014; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int collapsedTitleTextAppearance=0x7f01000e; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int color=0x7f010108; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorAccent=0x7f0100e3; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorBackgroundFloating=0x7f0100ea; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorButtonNormal=0x7f0100e7; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlActivated=0x7f0100e5; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlHighlight=0x7f0100e6; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorControlNormal=0x7f0100e4; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int colorError=0x7f010103; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorPrimary=0x7f0100e1; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorPrimaryDark=0x7f0100e2; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int colorSwitchThumbNormal=0x7f0100e8; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int commitIcon=0x7f01012c; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentDescription=0x7f010119; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetEnd=0x7f010072; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetEndWithActions=0x7f010076; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetLeft=0x7f010073; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetRight=0x7f010074; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetStart=0x7f010071; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentInsetStartWithNavigation=0x7f010075; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int contentScrim=0x7f01000f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int controlBackground=0x7f0100e9; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int counterEnabled=0x7f010048; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int counterMaxLength=0x7f010049; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int counterOverflowTextAppearance=0x7f01004b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int counterTextAppearance=0x7f01004a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int customNavigationLayout=0x7f01006a; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int defaultQueryHint=0x7f010126; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". - */ - public static final int defaultValue=0x7f010165; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dependency=0x7f010163; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogIcon=0x7f010156; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogLayout=0x7f010159; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogMessage=0x7f010155; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogPreferenceStyle=0x7f010179; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogPreferredPadding=0x7f0100b9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogTheme=0x7f0100b8; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dialogTitle=0x7f010154; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int disableDependentsState=0x7f010153; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- */ - public static final int displayOptions=0x7f010060; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int divider=0x7f010066; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerHorizontal=0x7f0100c6; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dividerPadding=0x7f010112; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerVertical=0x7f0100c5; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int drawableSize=0x7f01010a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int drawerArrowStyle=0x7f01005b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownListViewStyle=0x7f0100d8; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int dropdownListPreferredItemHeight=0x7f0100bc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropdownPreferenceStyle=0x7f01017c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextBackground=0x7f0100cd; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int editTextColor=0x7f0100cc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextPreferenceStyle=0x7f01017a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextStyle=0x7f0100f8; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int elevation=0x7f010077; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int enabled=0x7f010161; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entries=0x7f01015a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entryValues=0x7f01015b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int errorEnabled=0x7f010046; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int errorTextAppearance=0x7f010047; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandActivityOverflowButtonDrawable=0x7f01007b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expanded=0x7f010000; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- */ - public static final int expandedTitleGravity=0x7f010015; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMargin=0x7f010008; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginBottom=0x7f01000c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginEnd=0x7f01000b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginStart=0x7f010009; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int expandedTitleMarginTop=0x7f01000a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandedTitleTextAppearance=0x7f01000d; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
auto-1
normal0
mini1
- */ - public static final int fabSize=0x7f010025; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fastScrollEnabled=0x7f010056; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollHorizontalThumbDrawable=0x7f010059; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollHorizontalTrackDrawable=0x7f01005a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollVerticalThumbDrawable=0x7f010057; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollVerticalTrackDrawable=0x7f010058; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int font=0x7f010193; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontFamily=0x7f01008e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderAuthority=0x7f01018c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fontProviderCerts=0x7f01018f; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
blocking0
async1
- */ - public static final int fontProviderFetchStrategy=0x7f010190; - /**

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
forever-1
- */ - public static final int fontProviderFetchTimeout=0x7f010191; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderPackage=0x7f01018d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontProviderQuery=0x7f01018e; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
normal0
italic1
- */ - public static final int fontStyle=0x7f010192; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fontWeight=0x7f010194; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int foregroundInsidePadding=0x7f01002a; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int fragment=0x7f01015f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int gapBetweenBars=0x7f01010b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int goIcon=0x7f010128; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int headerLayout=0x7f010030; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int height=0x7f01005c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hideOnContentScroll=0x7f010070; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hintAnimationEnabled=0x7f01004c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int hintEnabled=0x7f010045; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int hintTextAppearance=0x7f010044; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeAsUpIndicator=0x7f0100be; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeLayout=0x7f01006b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int icon=0x7f010064; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconSpaceReserved=0x7f01016a; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconTint=0x7f01011b; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int iconTintMode=0x7f01011c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int iconifiedByDefault=0x7f010124; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imageButtonStyle=0x7f0100ce; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int indeterminateProgressStyle=0x7f01006d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int initialActivityCount=0x7f01007a; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int insetForeground=0x7f010031; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int isLightTheme=0x7f01005d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int itemBackground=0x7f01002e; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemIconTint=0x7f01002c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemPadding=0x7f01006f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int itemTextAppearance=0x7f01002f; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int itemTextColor=0x7f01002d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int key=0x7f01015c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keylines=0x7f010019; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout=0x7f010123; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layoutManager=0x7f010052; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_anchor=0x7f01001c; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
- */ - public static final int layout_anchorGravity=0x7f01001e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_behavior=0x7f01001b; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
none0
pin1
parallax2
- */ - public static final int layout_collapseMode=0x7f010017; - /**

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_collapseParallaxMultiplier=0x7f010018; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
- */ - public static final int layout_dodgeInsetEdges=0x7f010020; - /**

Must be one of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
- */ - public static final int layout_insetEdge=0x7f01001f; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int layout_keyline=0x7f01001d; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
- */ - public static final int layout_scrollFlags=0x7f010003; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_scrollInterpolator=0x7f010004; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listChoiceBackgroundIndicator=0x7f0100e0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listDividerAlertDialog=0x7f0100ba; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listItemLayout=0x7f010080; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listLayout=0x7f01007d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listMenuViewStyle=0x7f010100; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listPopupWindowStyle=0x7f0100d9; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeight=0x7f0100d3; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeightLarge=0x7f0100d5; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemHeightSmall=0x7f0100d4; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemPaddingLeft=0x7f0100d6; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int listPreferredItemPaddingRight=0x7f0100d7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int logo=0x7f010065; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int logoDescription=0x7f010149; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxActionInlineWidth=0x7f010033; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxButtonHeight=0x7f010143; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxHeight=0x7f01016e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int maxWidth=0x7f01016d; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int measureWithLargestChild=0x7f010110; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int menu=0x7f01002b; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int min=0x7f010186; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int multiChoiceItemLayout=0x7f01007e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int navigationContentDescription=0x7f010148; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int navigationIcon=0x7f010147; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- */ - public static final int navigationMode=0x7f01005f; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int negativeButtonText=0x7f010158; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- */ - public static final int numericModifiers=0x7f010114; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int order=0x7f01015e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int orderingFromXml=0x7f01016c; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int overlapAnchor=0x7f01011f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingBottomNoButtons=0x7f010121; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingEnd=0x7f01014d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingStart=0x7f01014c; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int paddingTopNoTitle=0x7f010122; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int panelBackground=0x7f0100dd; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int panelMenuListTheme=0x7f0100df; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int panelMenuListWidth=0x7f0100de; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleContentDescription=0x7f01004f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int passwordToggleDrawable=0x7f01004e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleEnabled=0x7f01004d; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int passwordToggleTint=0x7f010050; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int passwordToggleTintMode=0x7f010051; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int persistent=0x7f010164; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupMenuStyle=0x7f0100ca; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupTheme=0x7f010078; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupWindowStyle=0x7f0100cb; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int positiveButtonText=0x7f010157; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceActivityStyle=0x7f010171; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceCategoryStyle=0x7f010174; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentCompatStyle=0x7f010173; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentListStyle=0x7f010181; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int preferenceFragmentPaddingSide=0x7f010182; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFragmentStyle=0x7f010172; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceHeaderPanelStyle=0x7f01017f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceInformationStyle=0x7f010176; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceLayoutChild=0x7f01017d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceListStyle=0x7f010180; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferencePanelStyle=0x7f01017e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceScreenStyle=0x7f010170; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceStyle=0x7f010175; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceTheme=0x7f01016f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int preserveIconSpacing=0x7f01011d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int pressedTranslationZ=0x7f010026; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int progressBarPadding=0x7f01006e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyle=0x7f01006c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int queryBackground=0x7f01012e; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int queryHint=0x7f010125; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int radioButtonStyle=0x7f0100f9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyle=0x7f0100fa; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleIndicator=0x7f0100fb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleSmall=0x7f0100fc; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int reverseLayout=0x7f010054; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ringtonePreferenceStyle=0x7f01017b; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int rippleColor=0x7f010024; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int scrimAnimationDuration=0x7f010013; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int scrimVisibleHeightTrigger=0x7f010012; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchHintIcon=0x7f01012a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchIcon=0x7f010129; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchViewStyle=0x7f0100d2; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int seekBarIncrement=0x7f010187; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int seekBarPreferenceStyle=0x7f010185; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int seekBarStyle=0x7f0100fd; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int selectable=0x7f010162; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectableItemBackground=0x7f0100c2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectableItemBackgroundBorderless=0x7f0100c3; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int shouldDisableView=0x7f010166; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
- */ - public static final int showAsAction=0x7f010115; - /**

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- */ - public static final int showDividers=0x7f010111; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showSeekBarValue=0x7f010189; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showText=0x7f01013a; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int showTitle=0x7f010081; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int singleChoiceItemLayout=0x7f01007f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int singleLineTitle=0x7f010169; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int spanCount=0x7f010053; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int spinBars=0x7f010109; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerDropDownItemStyle=0x7f0100bd; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerStyle=0x7f0100fe; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int splitTrack=0x7f010139; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int srcCompat=0x7f010082; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int stackFromEnd=0x7f010055; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_above_anchor=0x7f010120; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_collapsed=0x7f010001; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int state_collapsible=0x7f010002; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int statusBarBackground=0x7f01001a; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int statusBarScrim=0x7f010010; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subMenuArrow=0x7f01011e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int submitBackground=0x7f01012f; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int subtitle=0x7f010061; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subtitleTextAppearance=0x7f01013c; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int subtitleTextColor=0x7f01014b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subtitleTextStyle=0x7f010063; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int suggestionRowLayout=0x7f01012d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summary=0x7f01015d; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summaryOff=0x7f010152; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int summaryOn=0x7f010151; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchMinWidth=0x7f010137; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchPadding=0x7f010138; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchPreferenceCompatStyle=0x7f010184; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchPreferenceStyle=0x7f010183; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchStyle=0x7f0100ff; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchTextAppearance=0x7f010136; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchTextOff=0x7f01018b; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int switchTextOn=0x7f01018a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabBackground=0x7f010037; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabContentStart=0x7f010036; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
fill0
center1
- */ - public static final int tabGravity=0x7f010039; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabIndicatorColor=0x7f010034; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabIndicatorHeight=0x7f010035; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabMaxWidth=0x7f01003b; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabMinWidth=0x7f01003a; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
scrollable0
fixed1
- */ - public static final int tabMode=0x7f010038; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPadding=0x7f010043; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingBottom=0x7f010042; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingEnd=0x7f010041; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingStart=0x7f01003f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabPaddingTop=0x7f010040; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabSelectedTextColor=0x7f01003e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabTextAppearance=0x7f01003c; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tabTextColor=0x7f01003d; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - */ - public static final int textAllCaps=0x7f010088; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceLargePopupMenu=0x7f0100b5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItem=0x7f0100da; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItemSecondary=0x7f0100db; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItemSmall=0x7f0100dc; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearancePopupMenuHeader=0x7f0100b7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultTitle=0x7f0100cf; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSmallPopupMenu=0x7f0100b6; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorAlertDialogListItem=0x7f0100ef; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorError=0x7f010023; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int textColorSearchUrl=0x7f0100d1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int theme=0x7f01014e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thickness=0x7f01010f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thumbTextPadding=0x7f010135; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int thumbTint=0x7f010130; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int thumbTintMode=0x7f010131; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tickMark=0x7f010085; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tickMarkTint=0x7f010086; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int tickMarkTintMode=0x7f010087; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tint=0x7f010083; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static final int tintMode=0x7f010084; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int title=0x7f01005e; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleEnabled=0x7f010016; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMargin=0x7f01013d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginBottom=0x7f010141; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginEnd=0x7f01013f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginStart=0x7f01013e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMarginTop=0x7f010140; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleMargins=0x7f010142; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int titleTextAppearance=0x7f01013b; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int titleTextColor=0x7f01014a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int titleTextStyle=0x7f010062; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarId=0x7f010011; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarNavigationButtonStyle=0x7f0100c9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toolbarStyle=0x7f0100c8; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static final int tooltipForegroundColor=0x7f010102; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tooltipFrameBackground=0x7f010101; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int tooltipText=0x7f01011a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int track=0x7f010132; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int trackTint=0x7f010133; - /**

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- */ - public static final int trackTintMode=0x7f010134; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int useCompatPadding=0x7f010028; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int voiceIcon=0x7f01012b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int widgetLayout=0x7f010160; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionBar=0x7f01008f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionBarOverlay=0x7f010091; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowActionModeOverlay=0x7f010092; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedHeightMajor=0x7f010096; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedHeightMinor=0x7f010094; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedWidthMajor=0x7f010093; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowFixedWidthMinor=0x7f010095; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowMinWidthMajor=0x7f010097; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowMinWidthMinor=0x7f010098; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static final int windowNoTitle=0x7f010090; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int yesNoPreferenceStyle=0x7f010178; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f0d0000; - public static final int abc_allow_stacked_button_bar=0x7f0d0001; - public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004; - } - public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0048; - public static final int abc_background_cache_hint_selector_material_light=0x7f0b0049; - public static final int abc_btn_colored_borderless_text_material=0x7f0b004a; - public static final int abc_btn_colored_text_material=0x7f0b004b; - public static final int abc_color_highlight_material=0x7f0b004c; - public static final int abc_hint_foreground_material_dark=0x7f0b004d; - public static final int abc_hint_foreground_material_light=0x7f0b004e; - public static final int abc_input_method_navigation_guard=0x7f0b000a; - public static final int abc_primary_text_disable_only_material_dark=0x7f0b004f; - public static final int abc_primary_text_disable_only_material_light=0x7f0b0050; - public static final int abc_primary_text_material_dark=0x7f0b0051; - public static final int abc_primary_text_material_light=0x7f0b0052; - public static final int abc_search_url_text=0x7f0b0053; - public static final int abc_search_url_text_normal=0x7f0b000b; - public static final int abc_search_url_text_pressed=0x7f0b000c; - public static final int abc_search_url_text_selected=0x7f0b000d; - public static final int abc_secondary_text_material_dark=0x7f0b0054; - public static final int abc_secondary_text_material_light=0x7f0b0055; - public static final int abc_tint_btn_checkable=0x7f0b0056; - public static final int abc_tint_default=0x7f0b0057; - public static final int abc_tint_edittext=0x7f0b0058; - public static final int abc_tint_seek_thumb=0x7f0b0059; - public static final int abc_tint_spinner=0x7f0b005a; - public static final int abc_tint_switch_track=0x7f0b005b; - public static final int accent_material_dark=0x7f0b000e; - public static final int accent_material_light=0x7f0b000f; - public static final int background_floating_material_dark=0x7f0b0010; - public static final int background_floating_material_light=0x7f0b0011; - public static final int background_material_dark=0x7f0b0012; - public static final int background_material_light=0x7f0b0013; - public static final int bright_foreground_disabled_material_dark=0x7f0b0014; - public static final int bright_foreground_disabled_material_light=0x7f0b0015; - public static final int bright_foreground_inverse_material_dark=0x7f0b0016; - public static final int bright_foreground_inverse_material_light=0x7f0b0017; - public static final int bright_foreground_material_dark=0x7f0b0018; - public static final int bright_foreground_material_light=0x7f0b0019; - public static final int button_material_dark=0x7f0b001a; - public static final int button_material_light=0x7f0b001b; - public static final int design_bottom_navigation_shadow_color=0x7f0b0000; - public static final int design_error=0x7f0b005c; - public static final int design_fab_shadow_end_color=0x7f0b0001; - public static final int design_fab_shadow_mid_color=0x7f0b0002; - public static final int design_fab_shadow_start_color=0x7f0b0003; - public static final int design_fab_stroke_end_inner_color=0x7f0b0004; - public static final int design_fab_stroke_end_outer_color=0x7f0b0005; - public static final int design_fab_stroke_top_inner_color=0x7f0b0006; - public static final int design_fab_stroke_top_outer_color=0x7f0b0007; - public static final int design_snackbar_background_color=0x7f0b0008; - public static final int design_tint_password_toggle=0x7f0b005d; - public static final int dim_foreground_disabled_material_dark=0x7f0b001c; - public static final int dim_foreground_disabled_material_light=0x7f0b001d; - public static final int dim_foreground_material_dark=0x7f0b001e; - public static final int dim_foreground_material_light=0x7f0b001f; - public static final int error_color_material=0x7f0b0020; - public static final int foreground_material_dark=0x7f0b0021; - public static final int foreground_material_light=0x7f0b0022; - public static final int highlighted_text_material_dark=0x7f0b0023; - public static final int highlighted_text_material_light=0x7f0b0024; - public static final int material_blue_grey_800=0x7f0b0025; - public static final int material_blue_grey_900=0x7f0b0026; - public static final int material_blue_grey_950=0x7f0b0027; - public static final int material_deep_teal_200=0x7f0b0028; - public static final int material_deep_teal_500=0x7f0b0029; - public static final int material_grey_100=0x7f0b002a; - public static final int material_grey_300=0x7f0b002b; - public static final int material_grey_50=0x7f0b002c; - public static final int material_grey_600=0x7f0b002d; - public static final int material_grey_800=0x7f0b002e; - public static final int material_grey_850=0x7f0b002f; - public static final int material_grey_900=0x7f0b0030; - public static final int notification_action_color_filter=0x7f0b0046; - public static final int notification_icon_bg_color=0x7f0b0047; - public static final int notification_material_background_media_default_color=0x7f0b0045; - public static final int preference_fallback_accent_color=0x7f0b0009; - public static final int primary_dark_material_dark=0x7f0b0031; - public static final int primary_dark_material_light=0x7f0b0032; - public static final int primary_material_dark=0x7f0b0033; - public static final int primary_material_light=0x7f0b0034; - public static final int primary_text_default_material_dark=0x7f0b0035; - public static final int primary_text_default_material_light=0x7f0b0036; - public static final int primary_text_disabled_material_dark=0x7f0b0037; - public static final int primary_text_disabled_material_light=0x7f0b0038; - public static final int ripple_material_dark=0x7f0b0039; - public static final int ripple_material_light=0x7f0b003a; - public static final int secondary_text_default_material_dark=0x7f0b003b; - public static final int secondary_text_default_material_light=0x7f0b003c; - public static final int secondary_text_disabled_material_dark=0x7f0b003d; - public static final int secondary_text_disabled_material_light=0x7f0b003e; - public static final int switch_thumb_disabled_material_dark=0x7f0b003f; - public static final int switch_thumb_disabled_material_light=0x7f0b0040; - public static final int switch_thumb_material_dark=0x7f0b005e; - public static final int switch_thumb_material_light=0x7f0b005f; - public static final int switch_thumb_normal_material_dark=0x7f0b0041; - public static final int switch_thumb_normal_material_light=0x7f0b0042; - public static final int tooltip_background_dark=0x7f0b0043; - public static final int tooltip_background_light=0x7f0b0044; - } - public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f090038; - public static final int abc_action_bar_content_inset_with_nav=0x7f090039; - public static final int abc_action_bar_default_height_material=0x7f09002d; - public static final int abc_action_bar_default_padding_end_material=0x7f09003a; - public static final int abc_action_bar_default_padding_start_material=0x7f09003b; - public static final int abc_action_bar_elevation_material=0x7f09003d; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f09003e; - public static final int abc_action_bar_overflow_padding_end_material=0x7f09003f; - public static final int abc_action_bar_overflow_padding_start_material=0x7f090040; - public static final int abc_action_bar_progress_bar_size=0x7f09002e; - public static final int abc_action_bar_stacked_max_height=0x7f090041; - public static final int abc_action_bar_stacked_tab_max_width=0x7f090042; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f090043; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f090044; - public static final int abc_action_button_min_height_material=0x7f090045; - public static final int abc_action_button_min_width_material=0x7f090046; - public static final int abc_action_button_min_width_overflow_material=0x7f090047; - public static final int abc_alert_dialog_button_bar_height=0x7f09002c; - public static final int abc_button_inset_horizontal_material=0x7f090048; - public static final int abc_button_inset_vertical_material=0x7f090049; - public static final int abc_button_padding_horizontal_material=0x7f09004a; - public static final int abc_button_padding_vertical_material=0x7f09004b; - public static final int abc_cascading_menus_min_smallest_width=0x7f09004c; - public static final int abc_config_prefDialogWidth=0x7f090031; - public static final int abc_control_corner_material=0x7f09004d; - public static final int abc_control_inset_material=0x7f09004e; - public static final int abc_control_padding_material=0x7f09004f; - public static final int abc_dialog_fixed_height_major=0x7f090032; - public static final int abc_dialog_fixed_height_minor=0x7f090033; - public static final int abc_dialog_fixed_width_major=0x7f090034; - public static final int abc_dialog_fixed_width_minor=0x7f090035; - public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f090050; - public static final int abc_dialog_list_padding_top_no_title=0x7f090051; - public static final int abc_dialog_min_width_major=0x7f090036; - public static final int abc_dialog_min_width_minor=0x7f090037; - public static final int abc_dialog_padding_material=0x7f090052; - public static final int abc_dialog_padding_top_material=0x7f090053; - public static final int abc_dialog_title_divider_material=0x7f090054; - public static final int abc_disabled_alpha_material_dark=0x7f090055; - public static final int abc_disabled_alpha_material_light=0x7f090056; - public static final int abc_dropdownitem_icon_width=0x7f090057; - public static final int abc_dropdownitem_text_padding_left=0x7f090058; - public static final int abc_dropdownitem_text_padding_right=0x7f090059; - public static final int abc_edit_text_inset_bottom_material=0x7f09005a; - public static final int abc_edit_text_inset_horizontal_material=0x7f09005b; - public static final int abc_edit_text_inset_top_material=0x7f09005c; - public static final int abc_floating_window_z=0x7f09005d; - public static final int abc_list_item_padding_horizontal_material=0x7f09005e; - public static final int abc_panel_menu_list_width=0x7f09005f; - public static final int abc_progress_bar_height_material=0x7f090060; - public static final int abc_search_view_preferred_height=0x7f090061; - public static final int abc_search_view_preferred_width=0x7f090062; - public static final int abc_seekbar_track_background_height_material=0x7f090063; - public static final int abc_seekbar_track_progress_height_material=0x7f090064; - public static final int abc_select_dialog_padding_start_material=0x7f090065; - public static final int abc_switch_padding=0x7f09003c; - public static final int abc_text_size_body_1_material=0x7f090066; - public static final int abc_text_size_body_2_material=0x7f090067; - public static final int abc_text_size_button_material=0x7f090068; - public static final int abc_text_size_caption_material=0x7f090069; - public static final int abc_text_size_display_1_material=0x7f09006a; - public static final int abc_text_size_display_2_material=0x7f09006b; - public static final int abc_text_size_display_3_material=0x7f09006c; - public static final int abc_text_size_display_4_material=0x7f09006d; - public static final int abc_text_size_headline_material=0x7f09006e; - public static final int abc_text_size_large_material=0x7f09006f; - public static final int abc_text_size_medium_material=0x7f090070; - public static final int abc_text_size_menu_header_material=0x7f090071; - public static final int abc_text_size_menu_material=0x7f090072; - public static final int abc_text_size_small_material=0x7f090073; - public static final int abc_text_size_subhead_material=0x7f090074; - public static final int abc_text_size_subtitle_material_toolbar=0x7f09002f; - public static final int abc_text_size_title_material=0x7f090075; - public static final int abc_text_size_title_material_toolbar=0x7f090030; - /** Default screen margins, per the Android Design guidelines. - */ - public static final int activity_horizontal_margin=0x7f09009f; - public static final int activity_vertical_margin=0x7f0900a0; - public static final int compat_button_inset_horizontal_material=0x7f09008f; - public static final int compat_button_inset_vertical_material=0x7f090090; - public static final int compat_button_padding_horizontal_material=0x7f090091; - public static final int compat_button_padding_vertical_material=0x7f090092; - public static final int compat_control_corner_material=0x7f090093; - public static final int design_appbar_elevation=0x7f090008; - public static final int design_bottom_navigation_active_item_max_width=0x7f090009; - public static final int design_bottom_navigation_active_text_size=0x7f09000a; - public static final int design_bottom_navigation_elevation=0x7f09000b; - public static final int design_bottom_navigation_height=0x7f09000c; - public static final int design_bottom_navigation_item_max_width=0x7f09000d; - public static final int design_bottom_navigation_item_min_width=0x7f09000e; - public static final int design_bottom_navigation_margin=0x7f09000f; - public static final int design_bottom_navigation_shadow_height=0x7f090010; - public static final int design_bottom_navigation_text_size=0x7f090011; - public static final int design_bottom_sheet_modal_elevation=0x7f090012; - public static final int design_bottom_sheet_peek_height_min=0x7f090013; - public static final int design_fab_border_width=0x7f090014; - public static final int design_fab_elevation=0x7f090015; - public static final int design_fab_image_size=0x7f090016; - public static final int design_fab_size_mini=0x7f090017; - public static final int design_fab_size_normal=0x7f090018; - public static final int design_fab_translation_z_pressed=0x7f090019; - public static final int design_navigation_elevation=0x7f09001a; - public static final int design_navigation_icon_padding=0x7f09001b; - public static final int design_navigation_icon_size=0x7f09001c; - public static final int design_navigation_max_width=0x7f090000; - public static final int design_navigation_padding_bottom=0x7f09001d; - public static final int design_navigation_separator_vertical_padding=0x7f09001e; - public static final int design_snackbar_action_inline_max_width=0x7f090001; - public static final int design_snackbar_background_corner_radius=0x7f090002; - public static final int design_snackbar_elevation=0x7f09001f; - public static final int design_snackbar_extra_spacing_horizontal=0x7f090003; - public static final int design_snackbar_max_width=0x7f090004; - public static final int design_snackbar_min_width=0x7f090005; - public static final int design_snackbar_padding_horizontal=0x7f090020; - public static final int design_snackbar_padding_vertical=0x7f090021; - public static final int design_snackbar_padding_vertical_2lines=0x7f090006; - public static final int design_snackbar_text_size=0x7f090022; - public static final int design_tab_max_width=0x7f090023; - public static final int design_tab_scrollable_min_width=0x7f090007; - public static final int design_tab_text_size=0x7f090024; - public static final int design_tab_text_size_2line=0x7f090025; - public static final int disabled_alpha_material_dark=0x7f090076; - public static final int disabled_alpha_material_light=0x7f090077; - public static final int empty_icon_height=0x7f0900a9; - /** Main Activity components - */ - public static final int empty_icon_width=0x7f0900a8; - public static final int fastscroll_default_thickness=0x7f090026; - public static final int fastscroll_margin=0x7f090027; - public static final int fastscroll_minimum_range=0x7f090028; - public static final int highlight_alpha_material_colored=0x7f090078; - public static final int highlight_alpha_material_dark=0x7f090079; - public static final int highlight_alpha_material_light=0x7f09007a; - public static final int hint_alpha_material_dark=0x7f09007b; - public static final int hint_alpha_material_light=0x7f09007c; - public static final int hint_pressed_alpha_material_dark=0x7f09007d; - public static final int hint_pressed_alpha_material_light=0x7f09007e; - public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090029; - public static final int item_touch_helper_swipe_escape_max_velocity=0x7f09002a; - public static final int item_touch_helper_swipe_escape_velocity=0x7f09002b; - public static final int navigation_header_height=0x7f0900aa; - public static final int navigation_item_height=0x7f0900ab; - public static final int navigation_item_icon_size=0x7f0900ac; - public static final int notification_action_icon_size=0x7f090094; - public static final int notification_action_text_size=0x7f090095; - public static final int notification_big_circle_margin=0x7f090096; - public static final int notification_content_margin_start=0x7f09008c; - public static final int notification_large_icon_height=0x7f090097; - public static final int notification_large_icon_width=0x7f090098; - public static final int notification_main_column_padding_top=0x7f09008d; - public static final int notification_media_narrow_margin=0x7f09008e; - public static final int notification_right_icon_size=0x7f090099; - public static final int notification_right_side_padding_top=0x7f09008b; - public static final int notification_small_icon_background_padding=0x7f09009a; - public static final int notification_small_icon_size_as_large=0x7f09009b; - public static final int notification_subtext_size=0x7f09009c; - public static final int notification_top_pad=0x7f09009d; - public static final int notification_top_pad_large_text=0x7f09009e; - public static final int padding_extra_extra_large=0x7f0900a7; - public static final int padding_extra_large=0x7f0900a6; - public static final int padding_large=0x7f0900a5; - public static final int padding_medium=0x7f0900a4; - public static final int padding_small=0x7f0900a3; - /** Padding - */ - public static final int padding_tiny=0x7f0900a1; - public static final int padding_tiny_plus_one=0x7f0900a2; - public static final int preference_icon_minWidth=0x7f090087; - public static final int preference_seekbar_padding_end=0x7f090088; - public static final int preference_seekbar_padding_start=0x7f090089; - public static final int preference_seekbar_value_width=0x7f09008a; - public static final int tooltip_corner_radius=0x7f09007f; - public static final int tooltip_horizontal_padding=0x7f090080; - public static final int tooltip_margin=0x7f090081; - public static final int tooltip_precise_anchor_extra_offset=0x7f090082; - public static final int tooltip_precise_anchor_threshold=0x7f090083; - public static final int tooltip_vertical_padding=0x7f090084; - public static final int tooltip_y_offset_non_touch=0x7f090085; - public static final int tooltip_y_offset_touch=0x7f090086; - } - public static final class drawable { - public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; - public static final int abc_action_bar_item_background_material=0x7f020001; - public static final int abc_btn_borderless_material=0x7f020002; - public static final int abc_btn_check_material=0x7f020003; - public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; - public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; - public static final int abc_btn_colored_material=0x7f020006; - public static final int abc_btn_default_mtrl_shape=0x7f020007; - public static final int abc_btn_radio_material=0x7f020008; - public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; - public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; - public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; - public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; - public static final int abc_cab_background_internal_bg=0x7f02000d; - public static final int abc_cab_background_top_material=0x7f02000e; - public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; - public static final int abc_control_background_material=0x7f020010; - public static final int abc_dialog_material_background=0x7f020011; - public static final int abc_edit_text_material=0x7f020012; - public static final int abc_ic_ab_back_material=0x7f020013; - public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; - public static final int abc_ic_clear_material=0x7f020015; - public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; - public static final int abc_ic_go_search_api_material=0x7f020017; - public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; - public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; - public static final int abc_ic_menu_overflow_material=0x7f02001a; - public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; - public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; - public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; - public static final int abc_ic_search_api_material=0x7f02001e; - public static final int abc_ic_star_black_16dp=0x7f02001f; - public static final int abc_ic_star_black_36dp=0x7f020020; - public static final int abc_ic_star_black_48dp=0x7f020021; - public static final int abc_ic_star_half_black_16dp=0x7f020022; - public static final int abc_ic_star_half_black_36dp=0x7f020023; - public static final int abc_ic_star_half_black_48dp=0x7f020024; - public static final int abc_ic_voice_search_api_material=0x7f020025; - public static final int abc_item_background_holo_dark=0x7f020026; - public static final int abc_item_background_holo_light=0x7f020027; - public static final int abc_list_divider_mtrl_alpha=0x7f020028; - public static final int abc_list_focused_holo=0x7f020029; - public static final int abc_list_longpressed_holo=0x7f02002a; - public static final int abc_list_pressed_holo_dark=0x7f02002b; - public static final int abc_list_pressed_holo_light=0x7f02002c; - public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; - public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; - public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; - public static final int abc_list_selector_disabled_holo_light=0x7f020030; - public static final int abc_list_selector_holo_dark=0x7f020031; - public static final int abc_list_selector_holo_light=0x7f020032; - public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; - public static final int abc_popup_background_mtrl_mult=0x7f020034; - public static final int abc_ratingbar_indicator_material=0x7f020035; - public static final int abc_ratingbar_material=0x7f020036; - public static final int abc_ratingbar_small_material=0x7f020037; - public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; - public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; - public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; - public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; - public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; - public static final int abc_seekbar_thumb_material=0x7f02003d; - public static final int abc_seekbar_tick_mark_material=0x7f02003e; - public static final int abc_seekbar_track_material=0x7f02003f; - public static final int abc_spinner_mtrl_am_alpha=0x7f020040; - public static final int abc_spinner_textfield_background_material=0x7f020041; - public static final int abc_switch_thumb_material=0x7f020042; - public static final int abc_switch_track_mtrl_alpha=0x7f020043; - public static final int abc_tab_indicator_material=0x7f020044; - public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; - public static final int abc_text_cursor_material=0x7f020046; - public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; - public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; - public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; - public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; - public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; - public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; - public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; - public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; - public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; - public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; - public static final int abc_textfield_search_material=0x7f020051; - public static final int abc_vector_test=0x7f020052; - public static final int avd_hide_password=0x7f020053; - public static final int avd_show_password=0x7f020054; - public static final int bg_wool_dark=0x7f020055; - public static final int bitmap_wool_dark=0x7f020056; - public static final int border_edittext=0x7f020057; - public static final int control_button=0x7f020058; - public static final int control_button_normal=0x7f020059; - public static final int control_button_pressed=0x7f02005a; - public static final int design_bottom_navigation_item_background=0x7f02005b; - public static final int design_fab_background=0x7f02005c; - public static final int design_ic_visibility=0x7f02005d; - public static final int design_ic_visibility_off=0x7f02005e; - public static final int design_password_eye=0x7f02005f; - public static final int design_snackbar_background=0x7f020060; - public static final int ic_close=0x7f020061; - public static final int ic_file=0x7f020062; - public static final int ic_folder=0x7f020063; - public static final int ic_launcher=0x7f020064; - public static final int ic_minimize=0x7f020065; - public static final int logo=0x7f020066; - public static final int mcbtn_normal=0x7f020067; - public static final int mcbtn_pressed=0x7f020068; - public static final int mcbutton=0x7f020069; - public static final int menu_hamburger=0x7f02006a; - public static final int mojang_logo=0x7f02006b; - public static final int mouse_pointer=0x7f02006c; - public static final int navigation_empty_icon=0x7f02006d; - public static final int notification_action_background=0x7f02006e; - public static final int notification_bg=0x7f02006f; - public static final int notification_bg_low=0x7f020070; - public static final int notification_bg_low_normal=0x7f020071; - public static final int notification_bg_low_pressed=0x7f020072; - public static final int notification_bg_normal=0x7f020073; - public static final int notification_bg_normal_pressed=0x7f020074; - public static final int notification_icon_background=0x7f020075; - public static final int notification_template_icon_bg=0x7f02007c; - public static final int notification_template_icon_low_bg=0x7f02007d; - public static final int notification_tile_bg=0x7f020076; - public static final int notify_panel_notification_icon_bg=0x7f020077; - public static final int preference_list_divider_material=0x7f020078; - public static final int toggle_log=0x7f020079; - public static final int tooltip_frame_dark=0x7f02007a; - public static final int tooltip_frame_light=0x7f02007b; - } - public static final class id { - public static final int ALT=0x7f07004a; - public static final int CTRL=0x7f07004b; - public static final int FUNCTION=0x7f07004c; - public static final int META=0x7f07004d; - public static final int SHIFT=0x7f07004e; - public static final int SYM=0x7f07004f; - public static final int action0=0x7f0700d8; - public static final int action_bar=0x7f07007b; - public static final int action_bar_activity_content=0x7f07000e; - public static final int action_bar_container=0x7f07007a; - public static final int action_bar_root=0x7f070076; - public static final int action_bar_spinner=0x7f07000f; - public static final int action_bar_subtitle=0x7f07005a; - public static final int action_bar_title=0x7f070059; - public static final int action_container=0x7f0700d5; - public static final int action_context_bar=0x7f07007c; - public static final int action_divider=0x7f0700dc; - public static final int action_image=0x7f0700d6; - public static final int action_menu_divider=0x7f070010; - public static final int action_menu_presenter=0x7f070011; - public static final int action_mode_bar=0x7f070078; - public static final int action_mode_bar_stub=0x7f070077; - public static final int action_mode_close_button=0x7f07005b; - public static final int action_text=0x7f0700d7; - public static final int actions=0x7f0700e5; - public static final int activity_chooser_view_content=0x7f07005c; - public static final int add=0x7f070045; - public static final int alertTitle=0x7f07006f; - public static final int all=0x7f070033; - public static final int always=0x7f070050; - public static final int async=0x7f070055; - public static final int auto=0x7f070021; - public static final int beginning=0x7f070048; - public static final int blocking=0x7f070056; - public static final int bottom=0x7f070022; - public static final int bottombar_author_logo=0x7f07008b; - public static final int bottombar_version_view=0x7f07008a; - public static final int buttonPanel=0x7f070062; - public static final int cancel_action=0x7f0700d9; - public static final int center=0x7f070023; - public static final int center_horizontal=0x7f070024; - public static final int center_vertical=0x7f070025; - public static final int checkbox=0x7f070072; - public static final int chronometer=0x7f0700e1; - public static final int clip_horizontal=0x7f07002f; - public static final int clip_vertical=0x7f070030; - public static final int collapseActionView=0x7f070051; - public static final int container=0x7f070094; - public static final int contentPanel=0x7f070065; - public static final int content_frame=0x7f0700b9; - public static final int content_log_close_button=0x7f0700d0; - public static final int content_log_layout=0x7f0700cf; - public static final int content_log_scroll=0x7f0700d2; - public static final int content_log_toggle_log=0x7f0700d1; - public static final int content_text_debug=0x7f0700d3; - public static final int control_debug=0x7f0700be; - public static final int control_down=0x7f0700c4; - public static final int control_inventory=0x7f0700cc; - public static final int control_jump=0x7f0700c8; - public static final int control_keyboard=0x7f0700c0; - public static final int control_left=0x7f0700c6; - public static final int control_listplayers=0x7f0700c3; - public static final int control_mouse_toggle=0x7f0700cd; - public static final int control_primary=0x7f0700c9; - public static final int control_right=0x7f0700c7; - public static final int control_secondary=0x7f0700ca; - public static final int control_shift=0x7f0700cb; - public static final int control_talk=0x7f0700bf; - public static final int control_thirdperson=0x7f0700c1; - public static final int control_togglecontrol=0x7f0700ce; - public static final int control_up=0x7f0700c5; - public static final int control_zoom=0x7f0700c2; - public static final int controlsetting_checkbox_hidden=0x7f070091; - public static final int controlsetting_edit_name=0x7f07008f; - public static final int controlsetting_spinner_lwjglkeycode=0x7f070090; - public static final int coordinator=0x7f070095; - public static final int custom=0x7f07006c; - public static final int customPanel=0x7f07006b; - public static final int customctrl_controllayout=0x7f07008d; - public static final int customctrl_drawerlayout=0x7f07008c; - public static final int customctrl_navigation_view=0x7f07008e; - public static final int decor_content_parent=0x7f070079; - public static final int default_activity_button=0x7f07005f; - public static final int design_bottom_sheet=0x7f070097; - public static final int design_menu_item_action_area=0x7f07009e; - public static final int design_menu_item_action_area_stub=0x7f07009d; - public static final int design_menu_item_text=0x7f07009c; - public static final int design_navigation_view=0x7f07009b; - public static final int disableHome=0x7f07003f; - public static final int edit_query=0x7f07007d; - public static final int end=0x7f070026; - public static final int end_padder=0x7f0700e7; - public static final int enterAlways=0x7f07001c; - public static final int enterAlwaysCollapsed=0x7f07001d; - public static final int exitUntilCollapsed=0x7f07001e; - public static final int expand_activities_button=0x7f07005d; - public static final int expanded_menu=0x7f070071; - public static final int fill=0x7f070031; - public static final int fill_horizontal=0x7f070032; - public static final int fill_vertical=0x7f070027; - public static final int fixed=0x7f070036; - public static final int forever=0x7f070057; - public static final int ghost_view=0x7f070000; - public static final int home=0x7f070012; - public static final int homeAsUp=0x7f070040; - public static final int icon=0x7f070061; - public static final int icon_frame=0x7f0700e8; - public static final int icon_group=0x7f0700e6; - public static final int ifRoom=0x7f070052; - public static final int image=0x7f07005e; - public static final int info=0x7f0700e2; - public static final int italic=0x7f070058; - public static final int item_touch_helper_previous_elevation=0x7f07000d; - public static final int lMTVVer=0x7f0700ab; - public static final int largeLabel=0x7f070093; - public static final int launcherAccEmail=0x7f0700a0; - public static final int launcherAccOffSwitch=0x7f0700a3; - public static final int launcherAccPassword=0x7f0700a1; - public static final int launcherAccProgress=0x7f0700a4; - public static final int launcherAccRememberSwitch=0x7f0700a2; - public static final int launcherAccUsername=0x7f0700b4; - public static final int launcherMainExitbtns=0x7f0700b1; - public static final int launcherMainLeftLayout=0x7f0700aa; - public static final int launcherMainPlayButton=0x7f0700ad; - public static final int launcherMainRightLayout=0x7f0700ae; - public static final int launcherMainSelectVersion=0x7f0700ac; - public static final int launcherMainUsernameView=0x7f0700af; - public static final int launcherMainVersionView=0x7f0700b0; - public static final int launchermainFragmentTabView=0x7f0700a5; - public static final int launchermainTabLayout=0x7f0700a6; - public static final int launchermainTabPager=0x7f0700a7; - public static final int launcherupdateLogView=0x7f0700b3; - public static final int launcherupdateProgressBar=0x7f0700b2; - public static final int left=0x7f070028; - public static final int line1=0x7f070017; - public static final int line3=0x7f070018; - public static final int list=0x7f0700ea; - public static final int listMode=0x7f07003d; - public static final int list_item=0x7f070060; - public static final int lmaintabconsoleLogCrashTextView=0x7f0700b6; - public static final int lmaintabconsoleLogTextView=0x7f0700b5; - public static final int lmaintabnewsNewsView=0x7f0700b7; - public static final int main_drawer_options=0x7f0700b8; - public static final int main_game_render_view=0x7f0700bb; - public static final int main_log_behind_GL=0x7f0700ba; - public static final int main_mouse_pointer=0x7f0700bd; - public static final int main_navigation_view=0x7f0700d4; - public static final int main_touchpad=0x7f0700bc; - public static final int masked=0x7f070102; - public static final int media_actions=0x7f0700db; - public static final int menu_ctrl_add=0x7f070104; - public static final int menu_ctrl_edit=0x7f070105; - public static final int menu_ctrl_load=0x7f070103; - public static final int menu_ctrl_remove=0x7f070106; - public static final int message=0x7f0700fa; - public static final int middle=0x7f070049; - public static final int mini=0x7f070034; - public static final int multiply=0x7f070038; - public static final int nav_customkey=0x7f07010a; - public static final int nav_debug=0x7f070109; - public static final int nav_forceclose=0x7f070107; - public static final int nav_viewlog=0x7f070108; - public static final int navigation_header_container=0x7f07009a; - public static final int never=0x7f070053; - public static final int none=0x7f07002c; - public static final int normal=0x7f070035; - public static final int notification_background=0x7f0700e4; - public static final int notification_main_column=0x7f0700de; - public static final int notification_main_column_container=0x7f0700dd; - public static final int parallax=0x7f07002d; - public static final int parentPanel=0x7f070064; - public static final int parent_matrix=0x7f070001; - public static final int pin=0x7f07002e; - public static final int progressDownloadBar=0x7f0700a8; - public static final int progressDownloadText=0x7f0700a9; - public static final int progress_circular=0x7f070013; - public static final int progress_horizontal=0x7f070014; - public static final int radio=0x7f070074; - public static final int right=0x7f070029; - public static final int right_icon=0x7f0700e3; - public static final int right_side=0x7f0700df; - public static final int save_image_matrix=0x7f070002; - public static final int save_non_transition_alpha=0x7f070003; - public static final int save_scale_type=0x7f070004; - public static final int screen=0x7f070039; - public static final int scroll=0x7f07001f; - public static final int scrollIndicatorDown=0x7f07006a; - public static final int scrollIndicatorUp=0x7f070066; - public static final int scrollView=0x7f070067; - public static final int scrollable=0x7f070037; - public static final int search_badge=0x7f07007f; - public static final int search_bar=0x7f07007e; - public static final int search_button=0x7f070080; - public static final int search_close_btn=0x7f070085; - public static final int search_edit_frame=0x7f070081; - public static final int search_go_btn=0x7f070087; - public static final int search_mag_icon=0x7f070082; - public static final int search_plate=0x7f070083; - public static final int search_src_text=0x7f070084; - public static final int search_voice_btn=0x7f070088; - public static final int seekbar=0x7f0700eb; - public static final int seekbar_value=0x7f0700ec; - public static final int select_dialog_listview=0x7f070089; - public static final int setting_progressseek_control=0x7f0700f1; - public static final int setting_progressseek_maxdxref=0x7f0700ef; - public static final int settings_checkbox_vertype_oldalpha=0x7f0700f6; - public static final int settings_checkbox_vertype_oldbeta=0x7f0700f7; - public static final int settings_checkbox_vertype_release=0x7f0700f4; - public static final int settings_checkbox_vertype_snapshot=0x7f0700f5; - public static final int settings_seekbar_controlsize=0x7f0700f0; - public static final int settings_seekbar_setmaxdxref=0x7f0700ee; - public static final int settings_switch_enablefreeform=0x7f0700f2; - public static final int settings_switch_forgetoptifpath=0x7f0700f3; - public static final int shortcut=0x7f070073; - public static final int showCustom=0x7f070041; - public static final int showHome=0x7f070042; - public static final int showTitle=0x7f070043; - public static final int smallLabel=0x7f070092; - public static final int snackbar_action=0x7f070099; - public static final int snackbar_text=0x7f070098; - public static final int snap=0x7f070020; - public static final int spacer=0x7f070063; - public static final int spinner=0x7f0700e9; - public static final int split_action_bar=0x7f070015; - public static final int src_atop=0x7f07003a; - public static final int src_in=0x7f07003b; - public static final int src_over=0x7f07003c; - public static final int start=0x7f07002a; - public static final int startscreenLinearLayout1=0x7f0700f8; - public static final int startscreenProgress=0x7f0700f9; - public static final int status_bar_latest_event_content=0x7f0700da; - public static final int submenuarrow=0x7f070075; - public static final int submit_area=0x7f070086; - public static final int switchWidget=0x7f0700ed; - public static final int tabMode=0x7f07003e; - public static final int text=0x7f070019; - public static final int text2=0x7f07001a; - public static final int textSpacerNoButtons=0x7f070069; - public static final int textSpacerNoTitle=0x7f070068; - public static final int text_input_password_toggle=0x7f07009f; - public static final int textinput_counter=0x7f07000a; - public static final int textinput_error=0x7f07000b; - public static final int time=0x7f0700e0; - public static final int title=0x7f07001b; - public static final int titleDividerNoCustom=0x7f070070; - public static final int title_template=0x7f07006e; - public static final int top=0x7f07002b; - public static final int topPanel=0x7f07006d; - public static final int topbar_earth_icon=0x7f0700fb; - public static final int topbar_help_text=0x7f0700fd; - public static final int topbar_language_text=0x7f0700fc; - public static final int topbar_logo=0x7f0700fe; - public static final int topbar_navmenu_icon=0x7f0700ff; - public static final int topbar_undertop_view=0x7f070100; - public static final int touch_outside=0x7f070096; - public static final int transition_current_scene=0x7f070005; - public static final int transition_layout_save=0x7f070006; - public static final int transition_position=0x7f070007; - public static final int transition_scene_layoutid_cache=0x7f070008; - public static final int transition_transform=0x7f070009; - public static final int uniform=0x7f070046; - public static final int up=0x7f070016; - public static final int useLogo=0x7f070044; - public static final int ver_clone=0x7f07010b; - public static final int ver_edit=0x7f07010c; - public static final int ver_remove=0x7f07010d; - public static final int view_offset_helper=0x7f07000c; - public static final int visible=0x7f070101; - public static final int withText=0x7f070054; - public static final int wrap_content=0x7f070047; - } - public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f0a0005; - public static final int abc_config_activityShortDur=0x7f0a0006; - public static final int app_bar_elevation_anim_duration=0x7f0a0001; - public static final int bottom_sheet_slide_duration=0x7f0a0002; - public static final int cancel_button_image_alpha=0x7f0a0007; - public static final int config_tooltipAnimTime=0x7f0a0008; - public static final int design_snackbar_text_max_lines=0x7f0a0000; - public static final int hide_password_duration=0x7f0a0003; - public static final int show_password_duration=0x7f0a0004; - public static final int status_bar_notification_info_maxnum=0x7f0a0009; - } - public static final class layout { - public static final int abc_action_bar_title_item=0x7f030000; - public static final int abc_action_bar_up_container=0x7f030001; - public static final int abc_action_bar_view_list_nav_layout=0x7f030002; - public static final int abc_action_menu_item_layout=0x7f030003; - public static final int abc_action_menu_layout=0x7f030004; - public static final int abc_action_mode_bar=0x7f030005; - public static final int abc_action_mode_close_item_material=0x7f030006; - public static final int abc_activity_chooser_view=0x7f030007; - public static final int abc_activity_chooser_view_list_item=0x7f030008; - public static final int abc_alert_dialog_button_bar_material=0x7f030009; - public static final int abc_alert_dialog_material=0x7f03000a; - public static final int abc_alert_dialog_title_material=0x7f03000b; - public static final int abc_dialog_title_material=0x7f03000c; - public static final int abc_expanded_menu_layout=0x7f03000d; - public static final int abc_list_menu_item_checkbox=0x7f03000e; - public static final int abc_list_menu_item_icon=0x7f03000f; - public static final int abc_list_menu_item_layout=0x7f030010; - public static final int abc_list_menu_item_radio=0x7f030011; - public static final int abc_popup_menu_header_item_layout=0x7f030012; - public static final int abc_popup_menu_item_layout=0x7f030013; - public static final int abc_screen_content_include=0x7f030014; - public static final int abc_screen_simple=0x7f030015; - public static final int abc_screen_simple_overlay_action_mode=0x7f030016; - public static final int abc_screen_toolbar=0x7f030017; - public static final int abc_search_dropdown_item_icons_2line=0x7f030018; - public static final int abc_search_view=0x7f030019; - public static final int abc_select_dialog_material=0x7f03001a; - public static final int bottom_bar=0x7f03001b; - public static final int control_mapping=0x7f03001c; - public static final int control_setting=0x7f03001d; - public static final int design_bottom_navigation_item=0x7f03001e; - public static final int design_bottom_sheet_dialog=0x7f03001f; - public static final int design_layout_snackbar=0x7f030020; - public static final int design_layout_snackbar_include=0x7f030021; - public static final int design_layout_tab_icon=0x7f030022; - public static final int design_layout_tab_text=0x7f030023; - public static final int design_menu_item_action_area=0x7f030024; - public static final int design_navigation_item=0x7f030025; - public static final int design_navigation_item_header=0x7f030026; - public static final int design_navigation_item_separator=0x7f030027; - public static final int design_navigation_item_subheader=0x7f030028; - public static final int design_navigation_menu=0x7f030029; - public static final int design_navigation_menu_item=0x7f03002a; - public static final int design_text_input_password_icon=0x7f03002b; - public static final int launcher_login=0x7f03002c; - public static final int launcher_main=0x7f03002d; - public static final int launcher_update=0x7f03002e; - public static final int launcher_user=0x7f03002f; - public static final int lmaintab_consolelog=0x7f030030; - public static final int lmaintab_crashlog=0x7f030031; - public static final int lmaintab_news=0x7f030032; - public static final int main=0x7f030033; - public static final int notification_action=0x7f030034; - public static final int notification_action_tombstone=0x7f030035; - public static final int notification_media_action=0x7f030036; - public static final int notification_media_cancel_action=0x7f030037; - public static final int notification_template_big_media=0x7f030038; - public static final int notification_template_big_media_custom=0x7f030039; - public static final int notification_template_big_media_narrow=0x7f03003a; - public static final int notification_template_big_media_narrow_custom=0x7f03003b; - public static final int notification_template_custom_big=0x7f03003c; - public static final int notification_template_icon_group=0x7f03003d; - public static final int notification_template_lines_media=0x7f03003e; - public static final int notification_template_media=0x7f03003f; - public static final int notification_template_media_custom=0x7f030040; - public static final int notification_template_part_chronometer=0x7f030041; - public static final int notification_template_part_time=0x7f030042; - public static final int preference=0x7f030043; - public static final int preference_category=0x7f030044; - public static final int preference_category_material=0x7f030045; - public static final int preference_dialog_edittext=0x7f030046; - public static final int preference_dropdown=0x7f030047; - public static final int preference_dropdown_material=0x7f030048; - public static final int preference_information=0x7f030049; - public static final int preference_information_material=0x7f03004a; - public static final int preference_list_fragment=0x7f03004b; - public static final int preference_material=0x7f03004c; - public static final int preference_recyclerview=0x7f03004d; - public static final int preference_widget_checkbox=0x7f03004e; - public static final int preference_widget_seekbar=0x7f03004f; - public static final int preference_widget_seekbar_material=0x7f030050; - public static final int preference_widget_switch=0x7f030051; - public static final int preference_widget_switch_compat=0x7f030052; - public static final int select_dialog_item_material=0x7f030053; - public static final int select_dialog_multichoice_material=0x7f030054; - public static final int select_dialog_singlechoice_material=0x7f030055; - public static final int settings=0x7f030056; - public static final int start_screen=0x7f030057; - public static final int support_simple_spinner_dropdown_item=0x7f030058; - public static final int tooltip=0x7f030059; - public static final int top_bar=0x7f03005a; - } - public static final class menu { - public static final int menu_customctrl=0x7f0f0000; - public static final int menu_runopt=0x7f0f0001; - public static final int menu_versionopt=0x7f0f0002; - } - public static final class string { - public static final int abc_action_bar_home_description=0x7f0c0008; - public static final int abc_action_bar_home_description_format=0x7f0c0009; - public static final int abc_action_bar_home_subtitle_description_format=0x7f0c000a; - public static final int abc_action_bar_up_description=0x7f0c000b; - public static final int abc_action_menu_overflow_description=0x7f0c000c; - public static final int abc_action_mode_done=0x7f0c000d; - public static final int abc_activity_chooser_view_see_all=0x7f0c000e; - public static final int abc_activitychooserview_choose_application=0x7f0c000f; - public static final int abc_capital_off=0x7f0c0010; - public static final int abc_capital_on=0x7f0c0011; - public static final int abc_font_family_body_1_material=0x7f0c001d; - public static final int abc_font_family_body_2_material=0x7f0c001e; - public static final int abc_font_family_button_material=0x7f0c001f; - public static final int abc_font_family_caption_material=0x7f0c0020; - public static final int abc_font_family_display_1_material=0x7f0c0021; - public static final int abc_font_family_display_2_material=0x7f0c0022; - public static final int abc_font_family_display_3_material=0x7f0c0023; - public static final int abc_font_family_display_4_material=0x7f0c0024; - public static final int abc_font_family_headline_material=0x7f0c0025; - public static final int abc_font_family_menu_material=0x7f0c0026; - public static final int abc_font_family_subhead_material=0x7f0c0027; - public static final int abc_font_family_title_material=0x7f0c0028; - public static final int abc_search_hint=0x7f0c0012; - public static final int abc_searchview_description_clear=0x7f0c0013; - public static final int abc_searchview_description_query=0x7f0c0014; - public static final int abc_searchview_description_search=0x7f0c0015; - public static final int abc_searchview_description_submit=0x7f0c0016; - public static final int abc_searchview_description_voice=0x7f0c0017; - public static final int abc_shareactionprovider_share_with=0x7f0c0018; - public static final int abc_shareactionprovider_share_with_application=0x7f0c0019; - public static final int abc_toolbar_collapse_description=0x7f0c001a; - /** Action bar part - */ - public static final int actionbar_help=0x7f0c002d; - public static final int alerttitle_installmod=0x7f0c0047; - public static final int alerttitle_installoptifine=0x7f0c0048; - /** AlertDialog title - */ - public static final int alerttitle_selectkeymap=0x7f0c0046; - /** App name part - */ - public static final int app_name=0x7f0c002b; - public static final int app_short_name=0x7f0c002c; - public static final int appbar_scrolling_view_behavior=0x7f0c0000; - public static final int bottom_sheet_behavior=0x7f0c0001; - public static final int character_counter_pattern=0x7f0c0002; - public static final int control_adebug=0x7f0c0098; - public static final int control_chat=0x7f0c0086; - public static final int control_customkey=0x7f0c0099; - public static final int control_debug=0x7f0c0087; - public static final int control_down=0x7f0c0090; - /** MainActivity: Menu advanced controls - */ - public static final int control_forceclose=0x7f0c0096; - public static final int control_inventory=0x7f0c008c; - public static final int control_jump=0x7f0c0091; - public static final int control_keyboard=0x7f0c0085; - public static final int control_left=0x7f0c008e; - public static final int control_listplayers=0x7f0c0093; - public static final int control_more3=0x7f0c009a; - public static final int control_more4=0x7f0c009b; - public static final int control_mouseoff=0x7f0c0094; - public static final int control_mouseon=0x7f0c0095; - public static final int control_primary=0x7f0c0089; - public static final int control_right=0x7f0c008f; - public static final int control_secondary=0x7f0c008a; - public static final int control_shift=0x7f0c008b; - public static final int control_thirdperson=0x7f0c0092; - public static final int control_toggle=0x7f0c0084; - public static final int control_up=0x7f0c008d; - public static final int control_viewout=0x7f0c0097; - public static final int control_zoom=0x7f0c0088; - /** MainActivity: Control buttons - */ - public static final int controls=0x7f0c0083; - public static final int customctrl_hidden=0x7f0c009d; - public static final int customctrl_keyname=0x7f0c009c; - /** Error messages - */ - public static final int error_checklog=0x7f0c0049; - public static final int error_convert_client=0x7f0c004e; - public static final int error_convert_lib=0x7f0c004d; - public static final int error_load_version=0x7f0c004c; - public static final int error_no_version=0x7f0c004b; - public static final int error_show_less=0x7f0c0050; - public static final int error_show_more=0x7f0c004f; - public static final int error_title=0x7f0c004a; - /** Global strings - */ - public static final int global_add=0x7f0c0077; - public static final int global_edit=0x7f0c0078; - public static final int global_error_field_empty=0x7f0c007d; - public static final int global_load=0x7f0c0079; - public static final int global_name=0x7f0c007a; - public static final int global_remove=0x7f0c007b; - public static final int global_save=0x7f0c007c; - public static final int hint_control_mapping=0x7f0c003e; - /** Hint - */ - public static final int hint_select_account=0x7f0c003d; - /** Languages list part - */ - public static final int language_name=0x7f0c002e; - /** Logging output - */ - public static final int log_title=0x7f0c002f; - public static final int login_error_exist_username=0x7f0c003b; - public static final int login_error_short_username=0x7f0c003a; - public static final int login_offline_alert_skip=0x7f0c0039; - public static final int login_offline_switch=0x7f0c0037; - public static final int login_offline_warning_1=0x7f0c0038; - public static final int login_online_create_account=0x7f0c0036; - public static final int login_online_login_label=0x7f0c0035; - public static final int login_online_password_hint=0x7f0c0032; - public static final int login_online_password_question=0x7f0c0033; - public static final int login_online_remember=0x7f0c0034; - /** Login strings - */ - public static final int login_online_username_hint=0x7f0c0030; - public static final int login_online_username_question=0x7f0c0031; - public static final int login_select_account=0x7f0c003c; - public static final int mcl_launch_cleancache=0x7f0c0058; - public static final int mcl_launch_convert_client=0x7f0c005d; - public static final int mcl_launch_convert_lib=0x7f0c005c; - public static final int mcl_launch_download_assets=0x7f0c005f; - public static final int mcl_launch_download_client=0x7f0c005b; - public static final int mcl_launch_download_lib=0x7f0c005a; - public static final int mcl_launch_downloading=0x7f0c0059; - public static final int mcl_launch_patch_client=0x7f0c005e; - public static final int mcl_option_about=0x7f0c0066; - public static final int mcl_option_checkupdate=0x7f0c0063; - public static final int mcl_option_customcontrol=0x7f0c0064; - public static final int mcl_option_modmgr=0x7f0c0061; - public static final int mcl_option_optifineinstall=0x7f0c0062; - public static final int mcl_option_settings=0x7f0c0065; - public static final int mcl_options=0x7f0c0060; - public static final int mcl_setting_category_general=0x7f0c0070; - public static final int mcl_setting_category_veroption=0x7f0c0071; - public static final int mcl_setting_subtitle_forgetoptifpath=0x7f0c006f; - public static final int mcl_setting_subtitle_freeform=0x7f0c006a; - public static final int mcl_setting_subtitle_longpresstrigger=0x7f0c006c; - public static final int mcl_setting_subtitle_setmaxdxref=0x7f0c0068; - public static final int mcl_setting_title_controlsize=0x7f0c006d; - public static final int mcl_setting_title_forgetoptifpath=0x7f0c006e; - public static final int mcl_setting_title_freeform=0x7f0c0069; - public static final int mcl_setting_title_longpresstrigger=0x7f0c006b; - public static final int mcl_setting_title_setmaxdxref=0x7f0c0067; - public static final int mcl_setting_veroption_oldalpha=0x7f0c0074; - public static final int mcl_setting_veroption_oldbeta=0x7f0c0075; - public static final int mcl_setting_veroption_release=0x7f0c0072; - public static final int mcl_setting_veroption_snapshot=0x7f0c0073; - public static final int mcl_tab_console=0x7f0c0055; - public static final int mcl_tab_crash=0x7f0c0056; - /** - Exit - - MCLauncherActivity: Tabs - */ - public static final int mcl_tab_news=0x7f0c0054; - public static final int mcl_version_clone=0x7f0c0076; - /** MCLauncherActivity: Strings - */ - public static final int mcl_version_msg=0x7f0c0057; - public static final int mcn_exit_call=0x7f0c007f; - public static final int mcn_exit_confirm=0x7f0c0082; - public static final int mcn_exit_crash=0x7f0c0080; - public static final int mcn_exit_errcrash=0x7f0c0081; - /** - -%1$s BETA (Minecraft Java launcher for Android), version " + PathTools.usingVerName + "\n" + - " - by Khanh Duy Tran (based from \"Boardwalk\" app)\n" + - //"© 2019 Khanh Duy Tran\n" + - "Using libraries:\n" + - " • LWJGL " + org.lwjgl.Sys.getVersion() + "\n" + - //" • Boardwalk memory manager (not used now).\n" + - " • gl4es: OpenGL for OpenGL ES devices by lunixbochs and ptitSeb.\n" + - " • dx: tool to convert.\n" + - " • Java AWT Implementation includes:\n" + - " - Boardwalk's makeshift.\n" + - " - Apache Harmony AWT Framework.\n" + - " - OpenJDK 7 codes implementation.\n" + - " - Developer code implement (copy text, open browser,...)\n" + - "\n" + - "* Notes:\n" + - " - This app is currently BETA, it will not be stable.\n" + - //"* This app will unstable on Android 7.0 or higher devices.\n" + - " - This app only use LWJGL2 and don't have a JRE8 desugar, so doesn't support 1.13 or higher versions.\n" + - " - This app is not affiliated with Minecraft, Mojang or Microsoft.\n") - - - MainActivity: strings - */ - public static final int mcn_exit_title=0x7f0c007e; - public static final int password_toggle_content_description=0x7f0c0003; - public static final int path_password_eye=0x7f0c0004; - public static final int path_password_eye_mask_strike_through=0x7f0c0005; - public static final int path_password_eye_mask_visible=0x7f0c0006; - public static final int path_password_strike_through=0x7f0c0007; - public static final int search_menu_title=0x7f0c001b; - public static final int status_bar_notification_info_overflow=0x7f0c001c; - public static final int toast_login_error=0x7f0c0052; - public static final int toast_optifine_success=0x7f0c0053; - /** Toast messages - */ - public static final int toast_permission_denied=0x7f0c0051; - /** Update part (unused now) - */ - public static final int update_console=0x7f0c009e; - public static final int v7_preference_off=0x7f0c0029; - public static final int v7_preference_on=0x7f0c002a; - public static final int warning_action_exit=0x7f0c0044; - public static final int warning_action_install=0x7f0c0042; - public static final int warning_action_tryanyway=0x7f0c0043; - public static final int warning_msg=0x7f0c0040; - public static final int warning_noshowagain=0x7f0c0041; - public static final int warning_remove_account=0x7f0c0045; - /** Warning - */ - public static final int warning_title=0x7f0c003f; - } - public static final class style { - public static final int AlertDialog_AppCompat=0x7f0800cd; - public static final int AlertDialog_AppCompat_Light=0x7f0800ce; - public static final int AlertTheme=0x7f0801ab; - public static final int Animation_AppCompat_Dialog=0x7f0800cf; - public static final int Animation_AppCompat_DropDownUp=0x7f0800d0; - public static final int Animation_AppCompat_Tooltip=0x7f0800d1; - public static final int Animation_Design_BottomSheetDialog=0x7f080004; - public static final int AppTheme=0x7f0801a9; - public static final int Base_AlertDialog_AppCompat=0x7f0800d2; - public static final int Base_AlertDialog_AppCompat_Light=0x7f0800d3; - public static final int Base_Animation_AppCompat_Dialog=0x7f0800d4; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f0800d5; - public static final int Base_Animation_AppCompat_Tooltip=0x7f0800d6; - public static final int Base_DialogWindowTitle_AppCompat=0x7f0800d7; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0800d8; - public static final int Base_TextAppearance_AppCompat=0x7f080069; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f08006a; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f08006b; - public static final int Base_TextAppearance_AppCompat_Button=0x7f080057; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f08006c; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f08006d; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f08006e; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f08006f; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f080070; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f080071; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08003b; - public static final int Base_TextAppearance_AppCompat_Large=0x7f080072; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08003c; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080073; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080074; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f080075; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08003d; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f080076; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0800d9; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080077; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080078; - public static final int Base_TextAppearance_AppCompat_Small=0x7f080079; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08003e; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f08007a; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f08003f; - public static final int Base_TextAppearance_AppCompat_Title=0x7f08007b; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080040; - public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0800da; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800be; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08007c; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08007d; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08007e; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08007f; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080080; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080081; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080082; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0800c5; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0800c6; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800bf; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800db; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f080083; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080084; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080085; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080086; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080087; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800dc; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080088; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080089; - public static final int Base_Theme_AppCompat=0x7f08008a; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f0800dd; - public static final int Base_Theme_AppCompat_Dialog=0x7f080041; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080042; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0800de; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080043; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080031; - public static final int Base_Theme_AppCompat_Light=0x7f08008b; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0800df; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080044; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080045; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0800e0; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080046; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080032; - public static final int Base_ThemeOverlay_AppCompat=0x7f0800e1; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800e2; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800e3; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800e4; - public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f080047; - public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f080048; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800e5; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080049; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08004a; - public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f08004b; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080053; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f080054; - public static final int Base_V14_Widget_Design_AppBarLayout=0x7f080005; - public static final int Base_V21_Theme_AppCompat=0x7f08008c; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08008d; - public static final int Base_V21_Theme_AppCompat_Light=0x7f08008e; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08008f; - public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f080090; - public static final int Base_V21_Widget_Design_AppBarLayout=0x7f080001; - public static final int Base_V22_Theme_AppCompat=0x7f0800bc; - public static final int Base_V22_Theme_AppCompat_Light=0x7f0800bd; - public static final int Base_V23_Theme_AppCompat=0x7f0800c0; - public static final int Base_V23_Theme_AppCompat_Light=0x7f0800c1; - public static final int Base_V26_Theme_AppCompat=0x7f0800c9; - public static final int Base_V26_Theme_AppCompat_Light=0x7f0800ca; - public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0800cb; - public static final int Base_V26_Widget_Design_AppBarLayout=0x7f080003; - public static final int Base_V7_Theme_AppCompat=0x7f0800e6; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800e7; - public static final int Base_V7_Theme_AppCompat_Light=0x7f0800e8; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800e9; - public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0800ea; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800eb; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ec; - public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0800ed; - public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ee; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ef; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080091; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080092; - public static final int Base_Widget_AppCompat_ActionButton=0x7f080093; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080094; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080095; - public static final int Base_Widget_AppCompat_ActionMode=0x7f0800f1; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800f2; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080055; - public static final int Base_Widget_AppCompat_Button=0x7f080096; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080097; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080098; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800f3; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f0800c2; - public static final int Base_Widget_AppCompat_Button_Small=0x7f080099; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f08009a; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800f4; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08009b; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08009c; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800f5; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080030; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800f6; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f08009d; - public static final int Base_Widget_AppCompat_EditText=0x7f080056; - public static final int Base_Widget_AppCompat_ImageButton=0x7f08009e; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800f7; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800f8; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800f9; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08009f; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0800a0; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0800a1; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0800a2; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0800a3; - public static final int Base_Widget_AppCompat_ListMenuView=0x7f0800fa; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0800a4; - public static final int Base_Widget_AppCompat_ListView=0x7f0800a5; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0800a6; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0800a7; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f0800a8; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0800a9; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800fb; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f08004c; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08004d; - public static final int Base_Widget_AppCompat_RatingBar=0x7f0800aa; - public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0800c3; - public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0800c4; - public static final int Base_Widget_AppCompat_SearchView=0x7f0800fc; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800fd; - public static final int Base_Widget_AppCompat_SeekBar=0x7f0800ab; - public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0800fe; - public static final int Base_Widget_AppCompat_Spinner=0x7f0800ac; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080033; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0800ad; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0800cc; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0800ae; - public static final int Base_Widget_Design_AppBarLayout=0x7f080002; - public static final int Base_Widget_Design_TabLayout=0x7f080006; - public static final int MenuDialog=0x7f0801ac; - public static final int MenuDialogAnimation=0x7f0801ad; - public static final int Platform_AppCompat=0x7f08004e; - public static final int Platform_AppCompat_Light=0x7f08004f; - public static final int Platform_ThemeOverlay_AppCompat=0x7f0800af; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0800b0; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0800b1; - public static final int Platform_V11_AppCompat=0x7f080050; - public static final int Platform_V11_AppCompat_Light=0x7f080051; - public static final int Platform_V14_AppCompat=0x7f080058; - public static final int Platform_V14_AppCompat_Light=0x7f080059; - public static final int Platform_V21_AppCompat=0x7f0800b2; - public static final int Platform_V21_AppCompat_Light=0x7f0800b3; - public static final int Platform_V25_AppCompat=0x7f0800c7; - public static final int Platform_V25_AppCompat_Light=0x7f0800c8; - public static final int Platform_Widget_AppCompat_Spinner=0x7f080052; - public static final int Preference=0x7f080192; - public static final int Preference_Category=0x7f080193; - public static final int Preference_Category_Material=0x7f08001f; - public static final int Preference_CheckBoxPreference=0x7f080194; - public static final int Preference_CheckBoxPreference_Material=0x7f080020; - public static final int Preference_DialogPreference=0x7f080195; - public static final int Preference_DialogPreference_EditTextPreference=0x7f080196; - public static final int Preference_DialogPreference_EditTextPreference_Material=0x7f080021; - public static final int Preference_DialogPreference_Material=0x7f080022; - public static final int Preference_DropDown=0x7f080197; - public static final int Preference_DropDown_Material=0x7f080023; - public static final int Preference_Information=0x7f080198; - public static final int Preference_Information_Material=0x7f080024; - public static final int Preference_Material=0x7f080025; - public static final int Preference_PreferenceScreen=0x7f080199; - public static final int Preference_PreferenceScreen_Material=0x7f080026; - public static final int Preference_SeekBarPreference=0x7f08019a; - public static final int Preference_SeekBarPreference_Material=0x7f080027; - public static final int Preference_SwitchPreference=0x7f080028; - public static final int Preference_SwitchPreference_Material=0x7f080029; - public static final int Preference_SwitchPreferenceCompat=0x7f08019b; - public static final int Preference_SwitchPreferenceCompat_Material=0x7f08002a; - public static final int PreferenceFragment=0x7f080190; - public static final int PreferenceFragment_Material=0x7f08002b; - public static final int PreferenceFragmentList=0x7f080191; - public static final int PreferenceFragmentList_Material=0x7f08001e; - public static final int PreferenceThemeOverlay=0x7f08019c; - public static final int PreferenceThemeOverlay_v14=0x7f08002c; - public static final int PreferenceThemeOverlay_v14_Material=0x7f08002d; - public static final int Preference_TextAppearanceMaterialBody2=0x7f08002e; - public static final int Preference_TextAppearanceMaterialSubhead=0x7f08002f; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f08005b; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08005c; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08005d; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08005e; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08005f; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080060; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080061; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080062; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080063; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080064; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080065; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080066; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080067; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080068; - public static final int RunTheme=0x7f0801aa; - public static final int TextAppearance_AppCompat=0x7f0800ff; - public static final int TextAppearance_AppCompat_Body1=0x7f080100; - public static final int TextAppearance_AppCompat_Body2=0x7f080101; - public static final int TextAppearance_AppCompat_Button=0x7f080102; - public static final int TextAppearance_AppCompat_Caption=0x7f080103; - public static final int TextAppearance_AppCompat_Display1=0x7f080104; - public static final int TextAppearance_AppCompat_Display2=0x7f080105; - public static final int TextAppearance_AppCompat_Display3=0x7f080106; - public static final int TextAppearance_AppCompat_Display4=0x7f080107; - public static final int TextAppearance_AppCompat_Headline=0x7f080108; - public static final int TextAppearance_AppCompat_Inverse=0x7f080109; - public static final int TextAppearance_AppCompat_Large=0x7f08010a; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f08010b; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f08010c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f08010d; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08010e; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08010f; - public static final int TextAppearance_AppCompat_Medium=0x7f080110; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f080111; - public static final int TextAppearance_AppCompat_Menu=0x7f080112; - public static final int TextAppearance_AppCompat_Notification=0x7f0800b4; - public static final int TextAppearance_AppCompat_Notification_Info=0x7f0800b5; - public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0800b6; - public static final int TextAppearance_AppCompat_Notification_Line2=0x7f080113; - public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f080114; - public static final int TextAppearance_AppCompat_Notification_Media=0x7f0800b7; - public static final int TextAppearance_AppCompat_Notification_Time=0x7f0800b8; - public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0800b9; - public static final int TextAppearance_AppCompat_Notification_Title=0x7f0800ba; - public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0800bb; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080115; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f080116; - public static final int TextAppearance_AppCompat_Small=0x7f080117; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f080118; - public static final int TextAppearance_AppCompat_Subhead=0x7f080119; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f08011a; - public static final int TextAppearance_AppCompat_Title=0x7f08011b; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f08011c; - public static final int TextAppearance_AppCompat_Tooltip=0x7f08005a; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f08011d; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08011e; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08011f; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080120; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080121; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080122; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f080123; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080124; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f080125; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f080126; - public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f080127; - public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f080128; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080129; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f08012a; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f08012b; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08012c; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08012d; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f08012e; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08012f; - public static final int TextAppearance_Compat_Notification=0x7f0801a2; - public static final int TextAppearance_Compat_Notification_Info=0x7f0801a3; - public static final int TextAppearance_Compat_Notification_Info_Media=0x7f08019d; - public static final int TextAppearance_Compat_Notification_Line2=0x7f0801a8; - public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0801a1; - public static final int TextAppearance_Compat_Notification_Media=0x7f08019e; - public static final int TextAppearance_Compat_Notification_Time=0x7f0801a4; - public static final int TextAppearance_Compat_Notification_Time_Media=0x7f08019f; - public static final int TextAppearance_Compat_Notification_Title=0x7f0801a5; - public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0801a0; - public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f080007; - public static final int TextAppearance_Design_Counter=0x7f080008; - public static final int TextAppearance_Design_Counter_Overflow=0x7f080009; - public static final int TextAppearance_Design_Error=0x7f08000a; - public static final int TextAppearance_Design_Hint=0x7f08000b; - public static final int TextAppearance_Design_Snackbar_Message=0x7f08000c; - public static final int TextAppearance_Design_Tab=0x7f08000d; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080130; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080131; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080132; - public static final int Theme_AppCompat=0x7f080133; - public static final int Theme_AppCompat_CompactMenu=0x7f080134; - public static final int Theme_AppCompat_DayNight=0x7f080034; - public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080035; - public static final int Theme_AppCompat_DayNight_Dialog=0x7f080036; - public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080037; - public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080038; - public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f080039; - public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08003a; - public static final int Theme_AppCompat_Dialog=0x7f080135; - public static final int Theme_AppCompat_Dialog_Alert=0x7f080136; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f080137; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f080138; - public static final int Theme_AppCompat_Light=0x7f080139; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f08013a; - public static final int Theme_AppCompat_Light_Dialog=0x7f08013b; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f08013c; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f08013d; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f08013e; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f08013f; - public static final int Theme_AppCompat_NoActionBar=0x7f080140; - public static final int Theme_Design=0x7f08000e; - public static final int Theme_Design_BottomSheetDialog=0x7f08000f; - public static final int Theme_Design_Light=0x7f080010; - public static final int Theme_Design_Light_BottomSheetDialog=0x7f080011; - public static final int Theme_Design_Light_NoActionBar=0x7f080012; - public static final int Theme_Design_NoActionBar=0x7f080013; - public static final int ThemeOverlay_AppCompat=0x7f080141; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f080142; - public static final int ThemeOverlay_AppCompat_Dark=0x7f080143; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080144; - public static final int ThemeOverlay_AppCompat_Dialog=0x7f080145; - public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f080146; - public static final int ThemeOverlay_AppCompat_Light=0x7f080147; - public static final int Widget_AppCompat_ActionBar=0x7f080148; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f080149; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f08014a; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f08014b; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f08014c; - public static final int Widget_AppCompat_ActionButton=0x7f08014d; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f08014e; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f08014f; - public static final int Widget_AppCompat_ActionMode=0x7f080150; - public static final int Widget_AppCompat_ActivityChooserView=0x7f080151; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f080152; - public static final int Widget_AppCompat_Button=0x7f080153; - public static final int Widget_AppCompat_Button_Borderless=0x7f080154; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f080155; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080156; - public static final int Widget_AppCompat_Button_Colored=0x7f080157; - public static final int Widget_AppCompat_Button_Small=0x7f080158; - public static final int Widget_AppCompat_ButtonBar=0x7f080159; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f08015a; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f08015b; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f08015c; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f08015d; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f08015e; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f08015f; - public static final int Widget_AppCompat_EditText=0x7f080160; - public static final int Widget_AppCompat_ImageButton=0x7f080161; - public static final int Widget_AppCompat_Light_ActionBar=0x7f080162; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080163; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080164; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f080165; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080166; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080167; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080168; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080169; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08016a; - public static final int Widget_AppCompat_Light_ActionButton=0x7f08016b; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f08016c; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f08016d; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f08016e; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f08016f; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080170; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080171; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080172; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080173; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f080174; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080175; - public static final int Widget_AppCompat_Light_SearchView=0x7f080176; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080177; - public static final int Widget_AppCompat_ListMenuView=0x7f080178; - public static final int Widget_AppCompat_ListPopupWindow=0x7f080179; - public static final int Widget_AppCompat_ListView=0x7f08017a; - public static final int Widget_AppCompat_ListView_DropDown=0x7f08017b; - public static final int Widget_AppCompat_ListView_Menu=0x7f08017c; - public static final int Widget_AppCompat_PopupMenu=0x7f08017d; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f08017e; - public static final int Widget_AppCompat_PopupWindow=0x7f08017f; - public static final int Widget_AppCompat_ProgressBar=0x7f080180; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080181; - public static final int Widget_AppCompat_RatingBar=0x7f080182; - public static final int Widget_AppCompat_RatingBar_Indicator=0x7f080183; - public static final int Widget_AppCompat_RatingBar_Small=0x7f080184; - public static final int Widget_AppCompat_SearchView=0x7f080185; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080186; - public static final int Widget_AppCompat_SeekBar=0x7f080187; - public static final int Widget_AppCompat_SeekBar_Discrete=0x7f080188; - public static final int Widget_AppCompat_Spinner=0x7f080189; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f08018a; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08018b; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f08018c; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08018d; - public static final int Widget_AppCompat_Toolbar=0x7f08018e; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08018f; - public static final int Widget_Compat_NotificationActionContainer=0x7f0801a6; - public static final int Widget_Compat_NotificationActionText=0x7f0801a7; - public static final int Widget_Design_AppBarLayout=0x7f080014; - public static final int Widget_Design_BottomNavigationView=0x7f080015; - public static final int Widget_Design_BottomSheet_Modal=0x7f080016; - public static final int Widget_Design_CollapsingToolbar=0x7f080017; - public static final int Widget_Design_CoordinatorLayout=0x7f080018; - public static final int Widget_Design_FloatingActionButton=0x7f080019; - public static final int Widget_Design_NavigationView=0x7f08001a; - public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08001b; - public static final int Widget_Design_Snackbar=0x7f08001c; - public static final int Widget_Design_TabLayout=0x7f080000; - public static final int Widget_Design_TextInputLayout=0x7f08001d; - } - public static final class xml { - public static final int pref_main=0x7f060000; - } - public static final class styleable { - /** Attributes that can be used with a ActionBar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ActionBar_background net.kdt.pojavlaunch:background}
{@link #ActionBar_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionBar_backgroundStacked net.kdt.pojavlaunch:backgroundStacked}
{@link #ActionBar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #ActionBar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #ActionBar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout net.kdt.pojavlaunch:customNavigationLayout}
{@link #ActionBar_displayOptions net.kdt.pojavlaunch:displayOptions}
{@link #ActionBar_divider net.kdt.pojavlaunch:divider}
{@link #ActionBar_elevation net.kdt.pojavlaunch:elevation}
{@link #ActionBar_height net.kdt.pojavlaunch:height}
{@link #ActionBar_hideOnContentScroll net.kdt.pojavlaunch:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #ActionBar_homeLayout net.kdt.pojavlaunch:homeLayout}
{@link #ActionBar_icon net.kdt.pojavlaunch:icon}
{@link #ActionBar_indeterminateProgressStyle net.kdt.pojavlaunch:indeterminateProgressStyle}
{@link #ActionBar_itemPadding net.kdt.pojavlaunch:itemPadding}
{@link #ActionBar_logo net.kdt.pojavlaunch:logo}
{@link #ActionBar_navigationMode net.kdt.pojavlaunch:navigationMode}
{@link #ActionBar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #ActionBar_progressBarPadding net.kdt.pojavlaunch:progressBarPadding}
{@link #ActionBar_progressBarStyle net.kdt.pojavlaunch:progressBarStyle}
{@link #ActionBar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #ActionBar_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionBar_title net.kdt.pojavlaunch:title}
{@link #ActionBar_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
- @see #ActionBar_background - @see #ActionBar_backgroundSplit - @see #ActionBar_backgroundStacked - @see #ActionBar_contentInsetEnd - @see #ActionBar_contentInsetEndWithActions - @see #ActionBar_contentInsetLeft - @see #ActionBar_contentInsetRight - @see #ActionBar_contentInsetStart - @see #ActionBar_contentInsetStartWithNavigation - @see #ActionBar_customNavigationLayout - @see #ActionBar_displayOptions - @see #ActionBar_divider - @see #ActionBar_elevation - @see #ActionBar_height - @see #ActionBar_hideOnContentScroll - @see #ActionBar_homeAsUpIndicator - @see #ActionBar_homeLayout - @see #ActionBar_icon - @see #ActionBar_indeterminateProgressStyle - @see #ActionBar_itemPadding - @see #ActionBar_logo - @see #ActionBar_navigationMode - @see #ActionBar_popupTheme - @see #ActionBar_progressBarPadding - @see #ActionBar_progressBarStyle - @see #ActionBar_subtitle - @see #ActionBar_subtitleTextStyle - @see #ActionBar_title - @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar = { - 0x7f01005c, 0x7f01005e, 0x7f01005f, 0x7f010060, - 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, - 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, - 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, - 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, - 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, - 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, - 0x7f0100be - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:background - */ - public static final int ActionBar_background = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundSplit - */ - public static final int ActionBar_backgroundSplit = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundStacked} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundStacked - */ - public static final int ActionBar_backgroundStacked = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEnd - */ - public static final int ActionBar_contentInsetEnd = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEndWithActions - */ - public static final int ActionBar_contentInsetEndWithActions = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetLeft - */ - public static final int ActionBar_contentInsetLeft = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetRight - */ - public static final int ActionBar_contentInsetRight = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStart - */ - public static final int ActionBar_contentInsetStart = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation - */ - public static final int ActionBar_contentInsetStartWithNavigation = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#customNavigationLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#displayOptions} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- @attr name net.kdt.pojavlaunch:displayOptions - */ - public static final int ActionBar_displayOptions = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:divider - */ - public static final int ActionBar_divider = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int ActionBar_elevation = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:height - */ - public static final int ActionBar_height = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hideOnContentScroll} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hideOnContentScroll - */ - public static final int ActionBar_hideOnContentScroll = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeAsUpIndicator - */ - public static final int ActionBar_homeAsUpIndicator = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeLayout - */ - public static final int ActionBar_homeLayout = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:icon - */ - public static final int ActionBar_icon = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#indeterminateProgressStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemPadding - */ - public static final int ActionBar_itemPadding = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:logo - */ - public static final int ActionBar_logo = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationMode} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- @attr name net.kdt.pojavlaunch:navigationMode - */ - public static final int ActionBar_navigationMode = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int ActionBar_popupTheme = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:progressBarPadding - */ - public static final int ActionBar_progressBarPadding = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#progressBarStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:progressBarStyle - */ - public static final int ActionBar_progressBarStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitle - */ - public static final int ActionBar_subtitle = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int ActionBar_title = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 5; - /** Attributes that can be used with a ActionBarLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
- @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout = { - 0x010100b3 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity = 0; - /** Attributes that can be used with a ActionMenuItemView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
- @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView = { - 0x0101013f - }; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth = 0; - /** Attributes that can be used with a ActionMenuView. - */ - public static final int[] ActionMenuView = { - - }; - /** Attributes that can be used with a ActionMode. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #ActionMode_background net.kdt.pojavlaunch:background}
{@link #ActionMode_backgroundSplit net.kdt.pojavlaunch:backgroundSplit}
{@link #ActionMode_closeItemLayout net.kdt.pojavlaunch:closeItemLayout}
{@link #ActionMode_height net.kdt.pojavlaunch:height}
{@link #ActionMode_subtitleTextStyle net.kdt.pojavlaunch:subtitleTextStyle}
{@link #ActionMode_titleTextStyle net.kdt.pojavlaunch:titleTextStyle}
- @see #ActionMode_background - @see #ActionMode_backgroundSplit - @see #ActionMode_closeItemLayout - @see #ActionMode_height - @see #ActionMode_subtitleTextStyle - @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode = { - 0x7f01005c, 0x7f010062, 0x7f010063, 0x7f010067, - 0x7f010069, 0x7f010079 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#background} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:background - */ - public static final int ActionMode_background = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionMode} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:backgroundSplit - */ - public static final int ActionMode_backgroundSplit = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeItemLayout} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:closeItemLayout - */ - public static final int ActionMode_closeItemLayout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#height} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:height - */ - public static final int ActionMode_height = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 1; - /** Attributes that can be used with a ActivityChooserView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount net.kdt.pojavlaunch:initialActivityCount}
- @see #ActivityChooserView_expandActivityOverflowButtonDrawable - @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView = { - 0x7f01007a, 0x7f01007b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandActivityOverflowButtonDrawable} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#initialActivityCount} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a AlertDialog. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout net.kdt.pojavlaunch:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout net.kdt.pojavlaunch:listItemLayout}
{@link #AlertDialog_listLayout net.kdt.pojavlaunch:listLayout}
{@link #AlertDialog_multiChoiceItemLayout net.kdt.pojavlaunch:multiChoiceItemLayout}
{@link #AlertDialog_showTitle net.kdt.pojavlaunch:showTitle}
{@link #AlertDialog_singleChoiceItemLayout net.kdt.pojavlaunch:singleChoiceItemLayout}
- @see #AlertDialog_android_layout - @see #AlertDialog_buttonPanelSideLayout - @see #AlertDialog_listItemLayout - @see #AlertDialog_listLayout - @see #AlertDialog_multiChoiceItemLayout - @see #AlertDialog_showTitle - @see #AlertDialog_singleChoiceItemLayout - */ - public static final int[] AlertDialog = { - 0x010100f2, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #AlertDialog} array. - @attr name android:layout - */ - public static final int AlertDialog_android_layout = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonPanelSideLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonPanelSideLayout - */ - public static final int AlertDialog_buttonPanelSideLayout = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listItemLayout - */ - public static final int AlertDialog_listItemLayout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listLayout - */ - public static final int AlertDialog_listLayout = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#multiChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:multiChoiceItemLayout - */ - public static final int AlertDialog_multiChoiceItemLayout = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showTitle} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showTitle - */ - public static final int AlertDialog_showTitle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:singleChoiceItemLayout - */ - public static final int AlertDialog_singleChoiceItemLayout = 4; - /** Attributes that can be used with a AppBarLayout. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #AppBarLayout_expanded net.kdt.pojavlaunch:expanded}
- @see #AppBarLayout_android_background - @see #AppBarLayout_android_keyboardNavigationCluster - @see #AppBarLayout_android_touchscreenBlocksFocus - @see #AppBarLayout_elevation - @see #AppBarLayout_expanded - */ - public static final int[] AppBarLayout = { - 0x010100d4, 0x0101048f, 0x01010540, 0x7f010000, - 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:background - */ - public static final int AppBarLayout_android_background = 0; - /** -

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:keyboardNavigationCluster - */ - public static final int AppBarLayout_android_keyboardNavigationCluster = 2; - /** -

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} - attribute's value can be found in the {@link #AppBarLayout} array. - @attr name android:touchscreenBlocksFocus - */ - public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #AppBarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int AppBarLayout_elevation = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expanded} - attribute's value can be found in the {@link #AppBarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expanded - */ - public static final int AppBarLayout_expanded = 3; - /** Attributes that can be used with a AppBarLayoutStates. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed net.kdt.pojavlaunch:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible net.kdt.pojavlaunch:state_collapsible}
- @see #AppBarLayoutStates_state_collapsed - @see #AppBarLayoutStates_state_collapsible - */ - public static final int[] AppBarLayoutStates = { - 0x7f010001, 0x7f010002 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsed} - attribute's value can be found in the {@link #AppBarLayoutStates} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_collapsed - */ - public static final int AppBarLayoutStates_state_collapsed = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_collapsible} - attribute's value can be found in the {@link #AppBarLayoutStates} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_collapsible - */ - public static final int AppBarLayoutStates_state_collapsible = 1; - /** Attributes that can be used with a AppBarLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags net.kdt.pojavlaunch:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator net.kdt.pojavlaunch:layout_scrollInterpolator}
- @see #AppBarLayout_Layout_layout_scrollFlags - @see #AppBarLayout_Layout_layout_scrollInterpolator - */ - public static final int[] AppBarLayout_Layout = { - 0x7f010003, 0x7f010004 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollFlags} - attribute's value can be found in the {@link #AppBarLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
- @attr name net.kdt.pojavlaunch:layout_scrollFlags - */ - public static final int AppBarLayout_Layout_layout_scrollFlags = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_scrollInterpolator} - attribute's value can be found in the {@link #AppBarLayout_Layout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout_scrollInterpolator - */ - public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; - /** Attributes that can be used with a AppCompatImageView. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat net.kdt.pojavlaunch:srcCompat}
{@link #AppCompatImageView_tint net.kdt.pojavlaunch:tint}
{@link #AppCompatImageView_tintMode net.kdt.pojavlaunch:tintMode}
- @see #AppCompatImageView_android_src - @see #AppCompatImageView_srcCompat - @see #AppCompatImageView_tint - @see #AppCompatImageView_tintMode - */ - public static final int[] AppCompatImageView = { - 0x01010119, 0x7f010082, 0x7f010083, 0x7f010084 - }; - /** -

This symbol is the offset where the {@link android.R.attr#src} - attribute's value can be found in the {@link #AppCompatImageView} array. - @attr name android:src - */ - public static final int AppCompatImageView_android_src = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#srcCompat} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:srcCompat - */ - public static final int AppCompatImageView_srcCompat = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tint} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tint - */ - public static final int AppCompatImageView_tint = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tintMode} - attribute's value can be found in the {@link #AppCompatImageView} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:tintMode - */ - public static final int AppCompatImageView_tintMode = 3; - /** Attributes that can be used with a AppCompatSeekBar. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark net.kdt.pojavlaunch:tickMark}
{@link #AppCompatSeekBar_tickMarkTint net.kdt.pojavlaunch:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode net.kdt.pojavlaunch:tickMarkTintMode}
- @see #AppCompatSeekBar_android_thumb - @see #AppCompatSeekBar_tickMark - @see #AppCompatSeekBar_tickMarkTint - @see #AppCompatSeekBar_tickMarkTintMode - */ - public static final int[] AppCompatSeekBar = { - 0x01010142, 0x7f010085, 0x7f010086, 0x7f010087 - }; - /** -

This symbol is the offset where the {@link android.R.attr#thumb} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - @attr name android:thumb - */ - public static final int AppCompatSeekBar_android_thumb = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMark} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tickMark - */ - public static final int AppCompatSeekBar_tickMark = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTint} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tickMarkTint - */ - public static final int AppCompatSeekBar_tickMarkTint = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tickMarkTintMode} - attribute's value can be found in the {@link #AppCompatSeekBar} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:tickMarkTintMode - */ - public static final int AppCompatSeekBar_tickMarkTintMode = 3; - /** Attributes that can be used with a AppCompatTextHelper. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
- @see #AppCompatTextHelper_android_drawableBottom - @see #AppCompatTextHelper_android_drawableEnd - @see #AppCompatTextHelper_android_drawableLeft - @see #AppCompatTextHelper_android_drawableRight - @see #AppCompatTextHelper_android_drawableStart - @see #AppCompatTextHelper_android_drawableTop - @see #AppCompatTextHelper_android_textAppearance - */ - public static final int[] AppCompatTextHelper = { - 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, - 0x01010170, 0x01010392, 0x01010393 - }; - /** -

This symbol is the offset where the {@link android.R.attr#drawableBottom} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableBottom - */ - public static final int AppCompatTextHelper_android_drawableBottom = 2; - /** -

This symbol is the offset where the {@link android.R.attr#drawableEnd} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableEnd - */ - public static final int AppCompatTextHelper_android_drawableEnd = 6; - /** -

This symbol is the offset where the {@link android.R.attr#drawableLeft} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableLeft - */ - public static final int AppCompatTextHelper_android_drawableLeft = 3; - /** -

This symbol is the offset where the {@link android.R.attr#drawableRight} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableRight - */ - public static final int AppCompatTextHelper_android_drawableRight = 4; - /** -

This symbol is the offset where the {@link android.R.attr#drawableStart} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableStart - */ - public static final int AppCompatTextHelper_android_drawableStart = 5; - /** -

This symbol is the offset where the {@link android.R.attr#drawableTop} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:drawableTop - */ - public static final int AppCompatTextHelper_android_drawableTop = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textAppearance} - attribute's value can be found in the {@link #AppCompatTextHelper} array. - @attr name android:textAppearance - */ - public static final int AppCompatTextHelper_android_textAppearance = 0; - /** Attributes that can be used with a AppCompatTextView. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize net.kdt.pojavlaunch:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize net.kdt.pojavlaunch:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes net.kdt.pojavlaunch:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity net.kdt.pojavlaunch:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType net.kdt.pojavlaunch:autoSizeTextType}
{@link #AppCompatTextView_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #AppCompatTextView_textAllCaps net.kdt.pojavlaunch:textAllCaps}
- @see #AppCompatTextView_android_textAppearance - @see #AppCompatTextView_autoSizeMaxTextSize - @see #AppCompatTextView_autoSizeMinTextSize - @see #AppCompatTextView_autoSizePresetSizes - @see #AppCompatTextView_autoSizeStepGranularity - @see #AppCompatTextView_autoSizeTextType - @see #AppCompatTextView_fontFamily - @see #AppCompatTextView_textAllCaps - */ - public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e - }; - /** -

This symbol is the offset where the {@link android.R.attr#textAppearance} - attribute's value can be found in the {@link #AppCompatTextView} array. - @attr name android:textAppearance - */ - public static final int AppCompatTextView_android_textAppearance = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMaxTextSize} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeMaxTextSize - */ - public static final int AppCompatTextView_autoSizeMaxTextSize = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeMinTextSize} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeMinTextSize - */ - public static final int AppCompatTextView_autoSizeMinTextSize = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizePresetSizes} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:autoSizePresetSizes - */ - public static final int AppCompatTextView_autoSizePresetSizes = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeStepGranularity} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:autoSizeStepGranularity - */ - public static final int AppCompatTextView_autoSizeStepGranularity = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoSizeTextType} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
none0
uniform1
- @attr name net.kdt.pojavlaunch:autoSizeTextType - */ - public static final int AppCompatTextView_autoSizeTextType = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontFamily - */ - public static final int AppCompatTextView_fontFamily = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name net.kdt.pojavlaunch:textAllCaps - */ - public static final int AppCompatTextView_textAllCaps = 1; - /** Attributes that can be used with a AppCompatTheme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AppCompatTheme_actionBarDivider net.kdt.pojavlaunch:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground net.kdt.pojavlaunch:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme net.kdt.pojavlaunch:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize net.kdt.pojavlaunch:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle net.kdt.pojavlaunch:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle net.kdt.pojavlaunch:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle net.kdt.pojavlaunch:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle net.kdt.pojavlaunch:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle net.kdt.pojavlaunch:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme net.kdt.pojavlaunch:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme net.kdt.pojavlaunch:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle net.kdt.pojavlaunch:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle net.kdt.pojavlaunch:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance net.kdt.pojavlaunch:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor net.kdt.pojavlaunch:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground net.kdt.pojavlaunch:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle net.kdt.pojavlaunch:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable net.kdt.pojavlaunch:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable net.kdt.pojavlaunch:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable net.kdt.pojavlaunch:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable net.kdt.pojavlaunch:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable net.kdt.pojavlaunch:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle net.kdt.pojavlaunch:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable net.kdt.pojavlaunch:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable net.kdt.pojavlaunch:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground net.kdt.pojavlaunch:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle net.kdt.pojavlaunch:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable net.kdt.pojavlaunch:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle net.kdt.pojavlaunch:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle net.kdt.pojavlaunch:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle net.kdt.pojavlaunch:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle net.kdt.pojavlaunch:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons net.kdt.pojavlaunch:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle net.kdt.pojavlaunch:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme net.kdt.pojavlaunch:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle net.kdt.pojavlaunch:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle net.kdt.pojavlaunch:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle net.kdt.pojavlaunch:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle net.kdt.pojavlaunch:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle net.kdt.pojavlaunch:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle net.kdt.pojavlaunch:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle net.kdt.pojavlaunch:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle net.kdt.pojavlaunch:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall net.kdt.pojavlaunch:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle net.kdt.pojavlaunch:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle net.kdt.pojavlaunch:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent net.kdt.pojavlaunch:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating net.kdt.pojavlaunch:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal net.kdt.pojavlaunch:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated net.kdt.pojavlaunch:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight net.kdt.pojavlaunch:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal net.kdt.pojavlaunch:colorControlNormal}
{@link #AppCompatTheme_colorError net.kdt.pojavlaunch:colorError}
{@link #AppCompatTheme_colorPrimary net.kdt.pojavlaunch:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark net.kdt.pojavlaunch:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal net.kdt.pojavlaunch:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground net.kdt.pojavlaunch:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding net.kdt.pojavlaunch:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme net.kdt.pojavlaunch:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal net.kdt.pojavlaunch:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical net.kdt.pojavlaunch:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle net.kdt.pojavlaunch:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight net.kdt.pojavlaunch:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground net.kdt.pojavlaunch:editTextBackground}
{@link #AppCompatTheme_editTextColor net.kdt.pojavlaunch:editTextColor}
{@link #AppCompatTheme_editTextStyle net.kdt.pojavlaunch:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator net.kdt.pojavlaunch:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle net.kdt.pojavlaunch:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator net.kdt.pojavlaunch:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog net.kdt.pojavlaunch:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle net.kdt.pojavlaunch:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle net.kdt.pojavlaunch:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight net.kdt.pojavlaunch:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge net.kdt.pojavlaunch:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall net.kdt.pojavlaunch:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft net.kdt.pojavlaunch:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight net.kdt.pojavlaunch:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground net.kdt.pojavlaunch:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme net.kdt.pojavlaunch:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth net.kdt.pojavlaunch:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle net.kdt.pojavlaunch:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle net.kdt.pojavlaunch:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle net.kdt.pojavlaunch:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle net.kdt.pojavlaunch:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator net.kdt.pojavlaunch:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall net.kdt.pojavlaunch:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle net.kdt.pojavlaunch:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle net.kdt.pojavlaunch:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless net.kdt.pojavlaunch:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle net.kdt.pojavlaunch:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle net.kdt.pojavlaunch:spinnerStyle}
{@link #AppCompatTheme_switchStyle net.kdt.pojavlaunch:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu net.kdt.pojavlaunch:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem net.kdt.pojavlaunch:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary net.kdt.pojavlaunch:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall net.kdt.pojavlaunch:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader net.kdt.pojavlaunch:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle net.kdt.pojavlaunch:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu net.kdt.pojavlaunch:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem net.kdt.pojavlaunch:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl net.kdt.pojavlaunch:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle net.kdt.pojavlaunch:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle net.kdt.pojavlaunch:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor net.kdt.pojavlaunch:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground net.kdt.pojavlaunch:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar net.kdt.pojavlaunch:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay net.kdt.pojavlaunch:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay net.kdt.pojavlaunch:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor net.kdt.pojavlaunch:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor net.kdt.pojavlaunch:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor net.kdt.pojavlaunch:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor net.kdt.pojavlaunch:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor net.kdt.pojavlaunch:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor net.kdt.pojavlaunch:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle net.kdt.pojavlaunch:windowNoTitle}
- @see #AppCompatTheme_actionBarDivider - @see #AppCompatTheme_actionBarItemBackground - @see #AppCompatTheme_actionBarPopupTheme - @see #AppCompatTheme_actionBarSize - @see #AppCompatTheme_actionBarSplitStyle - @see #AppCompatTheme_actionBarStyle - @see #AppCompatTheme_actionBarTabBarStyle - @see #AppCompatTheme_actionBarTabStyle - @see #AppCompatTheme_actionBarTabTextStyle - @see #AppCompatTheme_actionBarTheme - @see #AppCompatTheme_actionBarWidgetTheme - @see #AppCompatTheme_actionButtonStyle - @see #AppCompatTheme_actionDropDownStyle - @see #AppCompatTheme_actionMenuTextAppearance - @see #AppCompatTheme_actionMenuTextColor - @see #AppCompatTheme_actionModeBackground - @see #AppCompatTheme_actionModeCloseButtonStyle - @see #AppCompatTheme_actionModeCloseDrawable - @see #AppCompatTheme_actionModeCopyDrawable - @see #AppCompatTheme_actionModeCutDrawable - @see #AppCompatTheme_actionModeFindDrawable - @see #AppCompatTheme_actionModePasteDrawable - @see #AppCompatTheme_actionModePopupWindowStyle - @see #AppCompatTheme_actionModeSelectAllDrawable - @see #AppCompatTheme_actionModeShareDrawable - @see #AppCompatTheme_actionModeSplitBackground - @see #AppCompatTheme_actionModeStyle - @see #AppCompatTheme_actionModeWebSearchDrawable - @see #AppCompatTheme_actionOverflowButtonStyle - @see #AppCompatTheme_actionOverflowMenuStyle - @see #AppCompatTheme_activityChooserViewStyle - @see #AppCompatTheme_alertDialogButtonGroupStyle - @see #AppCompatTheme_alertDialogCenterButtons - @see #AppCompatTheme_alertDialogStyle - @see #AppCompatTheme_alertDialogTheme - @see #AppCompatTheme_android_windowAnimationStyle - @see #AppCompatTheme_android_windowIsFloating - @see #AppCompatTheme_autoCompleteTextViewStyle - @see #AppCompatTheme_borderlessButtonStyle - @see #AppCompatTheme_buttonBarButtonStyle - @see #AppCompatTheme_buttonBarNegativeButtonStyle - @see #AppCompatTheme_buttonBarNeutralButtonStyle - @see #AppCompatTheme_buttonBarPositiveButtonStyle - @see #AppCompatTheme_buttonBarStyle - @see #AppCompatTheme_buttonStyle - @see #AppCompatTheme_buttonStyleSmall - @see #AppCompatTheme_checkboxStyle - @see #AppCompatTheme_checkedTextViewStyle - @see #AppCompatTheme_colorAccent - @see #AppCompatTheme_colorBackgroundFloating - @see #AppCompatTheme_colorButtonNormal - @see #AppCompatTheme_colorControlActivated - @see #AppCompatTheme_colorControlHighlight - @see #AppCompatTheme_colorControlNormal - @see #AppCompatTheme_colorError - @see #AppCompatTheme_colorPrimary - @see #AppCompatTheme_colorPrimaryDark - @see #AppCompatTheme_colorSwitchThumbNormal - @see #AppCompatTheme_controlBackground - @see #AppCompatTheme_dialogPreferredPadding - @see #AppCompatTheme_dialogTheme - @see #AppCompatTheme_dividerHorizontal - @see #AppCompatTheme_dividerVertical - @see #AppCompatTheme_dropDownListViewStyle - @see #AppCompatTheme_dropdownListPreferredItemHeight - @see #AppCompatTheme_editTextBackground - @see #AppCompatTheme_editTextColor - @see #AppCompatTheme_editTextStyle - @see #AppCompatTheme_homeAsUpIndicator - @see #AppCompatTheme_imageButtonStyle - @see #AppCompatTheme_listChoiceBackgroundIndicator - @see #AppCompatTheme_listDividerAlertDialog - @see #AppCompatTheme_listMenuViewStyle - @see #AppCompatTheme_listPopupWindowStyle - @see #AppCompatTheme_listPreferredItemHeight - @see #AppCompatTheme_listPreferredItemHeightLarge - @see #AppCompatTheme_listPreferredItemHeightSmall - @see #AppCompatTheme_listPreferredItemPaddingLeft - @see #AppCompatTheme_listPreferredItemPaddingRight - @see #AppCompatTheme_panelBackground - @see #AppCompatTheme_panelMenuListTheme - @see #AppCompatTheme_panelMenuListWidth - @see #AppCompatTheme_popupMenuStyle - @see #AppCompatTheme_popupWindowStyle - @see #AppCompatTheme_radioButtonStyle - @see #AppCompatTheme_ratingBarStyle - @see #AppCompatTheme_ratingBarStyleIndicator - @see #AppCompatTheme_ratingBarStyleSmall - @see #AppCompatTheme_searchViewStyle - @see #AppCompatTheme_seekBarStyle - @see #AppCompatTheme_selectableItemBackground - @see #AppCompatTheme_selectableItemBackgroundBorderless - @see #AppCompatTheme_spinnerDropDownItemStyle - @see #AppCompatTheme_spinnerStyle - @see #AppCompatTheme_switchStyle - @see #AppCompatTheme_textAppearanceLargePopupMenu - @see #AppCompatTheme_textAppearanceListItem - @see #AppCompatTheme_textAppearanceListItemSecondary - @see #AppCompatTheme_textAppearanceListItemSmall - @see #AppCompatTheme_textAppearancePopupMenuHeader - @see #AppCompatTheme_textAppearanceSearchResultSubtitle - @see #AppCompatTheme_textAppearanceSearchResultTitle - @see #AppCompatTheme_textAppearanceSmallPopupMenu - @see #AppCompatTheme_textColorAlertDialogListItem - @see #AppCompatTheme_textColorSearchUrl - @see #AppCompatTheme_toolbarNavigationButtonStyle - @see #AppCompatTheme_toolbarStyle - @see #AppCompatTheme_tooltipForegroundColor - @see #AppCompatTheme_tooltipFrameBackground - @see #AppCompatTheme_windowActionBar - @see #AppCompatTheme_windowActionBarOverlay - @see #AppCompatTheme_windowActionModeOverlay - @see #AppCompatTheme_windowFixedHeightMajor - @see #AppCompatTheme_windowFixedHeightMinor - @see #AppCompatTheme_windowFixedWidthMajor - @see #AppCompatTheme_windowFixedWidthMinor - @see #AppCompatTheme_windowMinWidthMajor - @see #AppCompatTheme_windowMinWidthMinor - @see #AppCompatTheme_windowNoTitle - */ - public static final int[] AppCompatTheme = { - 0x01010057, 0x010100ae, 0x7f01008f, 0x7f010090, - 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, - 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, - 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, - 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, - 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, - 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, - 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, - 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, - 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, - 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, - 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, - 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, - 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, - 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, - 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, - 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, - 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, - 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, - 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, - 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, - 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, - 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, - 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, - 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, - 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, - 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, - 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, - 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, - 0x7f010101, 0x7f010102, 0x7f010103 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarDivider} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarDivider - */ - public static final int AppCompatTheme_actionBarDivider = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarItemBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarItemBackground - */ - public static final int AppCompatTheme_actionBarItemBackground = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarPopupTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarPopupTheme - */ - public static final int AppCompatTheme_actionBarPopupTheme = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSize} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- @attr name net.kdt.pojavlaunch:actionBarSize - */ - public static final int AppCompatTheme_actionBarSize = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarSplitStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarSplitStyle - */ - public static final int AppCompatTheme_actionBarSplitStyle = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarStyle - */ - public static final int AppCompatTheme_actionBarStyle = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabBarStyle - */ - public static final int AppCompatTheme_actionBarTabBarStyle = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabStyle - */ - public static final int AppCompatTheme_actionBarTabStyle = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTabTextStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTabTextStyle - */ - public static final int AppCompatTheme_actionBarTabTextStyle = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarTheme - */ - public static final int AppCompatTheme_actionBarTheme = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionBarWidgetTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionBarWidgetTheme - */ - public static final int AppCompatTheme_actionBarWidgetTheme = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionButtonStyle - */ - public static final int AppCompatTheme_actionButtonStyle = 50; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionDropDownStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionDropDownStyle - */ - public static final int AppCompatTheme_actionDropDownStyle = 46; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextAppearance} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionMenuTextAppearance - */ - public static final int AppCompatTheme_actionMenuTextAppearance = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionMenuTextColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:actionMenuTextColor - */ - public static final int AppCompatTheme_actionMenuTextColor = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeBackground - */ - public static final int AppCompatTheme_actionModeBackground = 29; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCloseButtonStyle - */ - public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCloseDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCloseDrawable - */ - public static final int AppCompatTheme_actionModeCloseDrawable = 31; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCopyDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCopyDrawable - */ - public static final int AppCompatTheme_actionModeCopyDrawable = 33; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeCutDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeCutDrawable - */ - public static final int AppCompatTheme_actionModeCutDrawable = 32; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeFindDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeFindDrawable - */ - public static final int AppCompatTheme_actionModeFindDrawable = 37; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePasteDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModePasteDrawable - */ - public static final int AppCompatTheme_actionModePasteDrawable = 34; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModePopupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModePopupWindowStyle - */ - public static final int AppCompatTheme_actionModePopupWindowStyle = 39; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSelectAllDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeSelectAllDrawable - */ - public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeShareDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeShareDrawable - */ - public static final int AppCompatTheme_actionModeShareDrawable = 36; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeSplitBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeSplitBackground - */ - public static final int AppCompatTheme_actionModeSplitBackground = 30; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeStyle - */ - public static final int AppCompatTheme_actionModeStyle = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionModeWebSearchDrawable} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionModeWebSearchDrawable - */ - public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionOverflowButtonStyle - */ - public static final int AppCompatTheme_actionOverflowButtonStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionOverflowMenuStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionOverflowMenuStyle - */ - public static final int AppCompatTheme_actionOverflowMenuStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#activityChooserViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:activityChooserViewStyle - */ - public static final int AppCompatTheme_activityChooserViewStyle = 58; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogButtonGroupStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogButtonGroupStyle - */ - public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogCenterButtons} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:alertDialogCenterButtons - */ - public static final int AppCompatTheme_alertDialogCenterButtons = 96; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogStyle - */ - public static final int AppCompatTheme_alertDialogStyle = 94; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alertDialogTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:alertDialogTheme - */ - public static final int AppCompatTheme_alertDialogTheme = 97; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - @attr name android:windowAnimationStyle - */ - public static final int AppCompatTheme_android_windowAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#windowIsFloating} - attribute's value can be found in the {@link #AppCompatTheme} array. - @attr name android:windowIsFloating - */ - public static final int AppCompatTheme_android_windowIsFloating = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#autoCompleteTextViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:autoCompleteTextViewStyle - */ - public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderlessButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:borderlessButtonStyle - */ - public static final int AppCompatTheme_borderlessButtonStyle = 55; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarButtonStyle - */ - public static final int AppCompatTheme_buttonBarButtonStyle = 52; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNegativeButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarNegativeButtonStyle - */ - public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarNeutralButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarNeutralButtonStyle - */ - public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarPositiveButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarPositiveButtonStyle - */ - public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonBarStyle - */ - public static final int AppCompatTheme_buttonBarStyle = 51; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonStyle - */ - public static final int AppCompatTheme_buttonStyle = 103; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonStyleSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:buttonStyleSmall - */ - public static final int AppCompatTheme_buttonStyleSmall = 104; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkboxStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkboxStyle - */ - public static final int AppCompatTheme_checkboxStyle = 105; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkedTextViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkedTextViewStyle - */ - public static final int AppCompatTheme_checkedTextViewStyle = 106; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorAccent} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorAccent - */ - public static final int AppCompatTheme_colorAccent = 86; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorBackgroundFloating} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorBackgroundFloating - */ - public static final int AppCompatTheme_colorBackgroundFloating = 93; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorButtonNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorButtonNormal - */ - public static final int AppCompatTheme_colorButtonNormal = 90; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlActivated} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlActivated - */ - public static final int AppCompatTheme_colorControlActivated = 88; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlHighlight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlHighlight - */ - public static final int AppCompatTheme_colorControlHighlight = 89; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorControlNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorControlNormal - */ - public static final int AppCompatTheme_colorControlNormal = 87; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorError} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:colorError - */ - public static final int AppCompatTheme_colorError = 118; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimary} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorPrimary - */ - public static final int AppCompatTheme_colorPrimary = 84; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorPrimaryDark} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorPrimaryDark - */ - public static final int AppCompatTheme_colorPrimaryDark = 85; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#colorSwitchThumbNormal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:colorSwitchThumbNormal - */ - public static final int AppCompatTheme_colorSwitchThumbNormal = 91; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#controlBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:controlBackground - */ - public static final int AppCompatTheme_controlBackground = 92; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferredPadding} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogPreferredPadding - */ - public static final int AppCompatTheme_dialogPreferredPadding = 44; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogTheme - */ - public static final int AppCompatTheme_dialogTheme = 43; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerHorizontal} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dividerHorizontal - */ - public static final int AppCompatTheme_dividerHorizontal = 57; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerVertical} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dividerVertical - */ - public static final int AppCompatTheme_dividerVertical = 56; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropDownListViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dropDownListViewStyle - */ - public static final int AppCompatTheme_dropDownListViewStyle = 75; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownListPreferredItemHeight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dropdownListPreferredItemHeight - */ - public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextBackground - */ - public static final int AppCompatTheme_editTextBackground = 64; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:editTextColor - */ - public static final int AppCompatTheme_editTextColor = 63; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextStyle - */ - public static final int AppCompatTheme_editTextStyle = 107; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:homeAsUpIndicator - */ - public static final int AppCompatTheme_homeAsUpIndicator = 49; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#imageButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:imageButtonStyle - */ - public static final int AppCompatTheme_imageButtonStyle = 65; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listChoiceBackgroundIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listChoiceBackgroundIndicator - */ - public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listDividerAlertDialog} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listDividerAlertDialog - */ - public static final int AppCompatTheme_listDividerAlertDialog = 45; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listMenuViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listMenuViewStyle - */ - public static final int AppCompatTheme_listMenuViewStyle = 115; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPopupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:listPopupWindowStyle - */ - public static final int AppCompatTheme_listPopupWindowStyle = 76; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeight - */ - public static final int AppCompatTheme_listPreferredItemHeight = 70; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightLarge} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeightLarge - */ - public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemHeightSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemHeightSmall - */ - public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingLeft} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemPaddingLeft - */ - public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#listPreferredItemPaddingRight} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:listPreferredItemPaddingRight - */ - public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:panelBackground - */ - public static final int AppCompatTheme_panelBackground = 80; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListTheme} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:panelMenuListTheme - */ - public static final int AppCompatTheme_panelMenuListTheme = 82; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#panelMenuListWidth} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:panelMenuListWidth - */ - public static final int AppCompatTheme_panelMenuListWidth = 81; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupMenuStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupMenuStyle - */ - public static final int AppCompatTheme_popupMenuStyle = 61; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupWindowStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupWindowStyle - */ - public static final int AppCompatTheme_popupWindowStyle = 62; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#radioButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:radioButtonStyle - */ - public static final int AppCompatTheme_radioButtonStyle = 108; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyle - */ - public static final int AppCompatTheme_ratingBarStyle = 109; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleIndicator} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyleIndicator - */ - public static final int AppCompatTheme_ratingBarStyleIndicator = 110; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ratingBarStyleSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ratingBarStyleSmall - */ - public static final int AppCompatTheme_ratingBarStyleSmall = 111; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchViewStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchViewStyle - */ - public static final int AppCompatTheme_searchViewStyle = 69; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:seekBarStyle - */ - public static final int AppCompatTheme_seekBarStyle = 112; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackground - */ - public static final int AppCompatTheme_selectableItemBackground = 53; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackgroundBorderless} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackgroundBorderless - */ - public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerDropDownItemStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:spinnerDropDownItemStyle - */ - public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinnerStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:spinnerStyle - */ - public static final int AppCompatTheme_spinnerStyle = 113; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchStyle - */ - public static final int AppCompatTheme_switchStyle = 114; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceLargePopupMenu} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceLargePopupMenu - */ - public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItem} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItem - */ - public static final int AppCompatTheme_textAppearanceListItem = 77; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSecondary} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItemSecondary - */ - public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceListItemSmall} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceListItemSmall - */ - public static final int AppCompatTheme_textAppearanceListItemSmall = 79; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearancePopupMenuHeader} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearancePopupMenuHeader - */ - public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultSubtitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSearchResultSubtitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSearchResultTitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSearchResultTitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAppearanceSmallPopupMenu} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:textAppearanceSmallPopupMenu - */ - public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorAlertDialogListItem} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorAlertDialogListItem - */ - public static final int AppCompatTheme_textColorAlertDialogListItem = 98; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorSearchUrl} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorSearchUrl - */ - public static final int AppCompatTheme_textColorSearchUrl = 68; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarNavigationButtonStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarNavigationButtonStyle - */ - public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarStyle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarStyle - */ - public static final int AppCompatTheme_toolbarStyle = 59; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipForegroundColor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:tooltipForegroundColor - */ - public static final int AppCompatTheme_tooltipForegroundColor = 117; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipFrameBackground} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tooltipFrameBackground - */ - public static final int AppCompatTheme_tooltipFrameBackground = 116; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBar} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionBar - */ - public static final int AppCompatTheme_windowActionBar = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionBarOverlay} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionBarOverlay - */ - public static final int AppCompatTheme_windowActionBarOverlay = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowActionModeOverlay} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowActionModeOverlay - */ - public static final int AppCompatTheme_windowActionModeOverlay = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedHeightMajor - */ - public static final int AppCompatTheme_windowFixedHeightMajor = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedHeightMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedHeightMinor - */ - public static final int AppCompatTheme_windowFixedHeightMinor = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedWidthMajor - */ - public static final int AppCompatTheme_windowFixedWidthMajor = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowFixedWidthMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowFixedWidthMinor - */ - public static final int AppCompatTheme_windowFixedWidthMinor = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMajor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowMinWidthMajor - */ - public static final int AppCompatTheme_windowMinWidthMajor = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowMinWidthMinor} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowMinWidthMinor - */ - public static final int AppCompatTheme_windowMinWidthMinor = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#windowNoTitle} - attribute's value can be found in the {@link #AppCompatTheme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:windowNoTitle - */ - public static final int AppCompatTheme_windowNoTitle = 3; - /** Attributes that can be used with a BackgroundStyle. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #BackgroundStyle_android_selectableItemBackground android:selectableItemBackground}
{@link #BackgroundStyle_selectableItemBackground net.kdt.pojavlaunch:selectableItemBackground}
- @see #BackgroundStyle_android_selectableItemBackground - @see #BackgroundStyle_selectableItemBackground - */ - public static final int[] BackgroundStyle = { - 0x0101030e, 0x7f0100c2 - }; - /** -

This symbol is the offset where the {@link android.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #BackgroundStyle} array. - @attr name android:selectableItemBackground - */ - public static final int BackgroundStyle_android_selectableItemBackground = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #BackgroundStyle} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:selectableItemBackground - */ - public static final int BackgroundStyle_selectableItemBackground = 1; - /** Attributes that can be used with a BottomNavigationView. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #BottomNavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #BottomNavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #BottomNavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #BottomNavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #BottomNavigationView_menu net.kdt.pojavlaunch:menu}
- @see #BottomNavigationView_elevation - @see #BottomNavigationView_itemBackground - @see #BottomNavigationView_itemIconTint - @see #BottomNavigationView_itemTextColor - @see #BottomNavigationView_menu - */ - public static final int[] BottomNavigationView = { - 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, - 0x7f010077 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int BottomNavigationView_elevation = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemBackground - */ - public static final int BottomNavigationView_itemBackground = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemIconTint - */ - public static final int BottomNavigationView_itemIconTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemTextColor - */ - public static final int BottomNavigationView_itemTextColor = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} - attribute's value can be found in the {@link #BottomNavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:menu - */ - public static final int BottomNavigationView_menu = 0; - /** Attributes that can be used with a BottomSheetBehavior_Layout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_hideable net.kdt.pojavlaunch:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight net.kdt.pojavlaunch:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed net.kdt.pojavlaunch:behavior_skipCollapsed}
- @see #BottomSheetBehavior_Layout_behavior_hideable - @see #BottomSheetBehavior_Layout_behavior_peekHeight - @see #BottomSheetBehavior_Layout_behavior_skipCollapsed - */ - public static final int[] BottomSheetBehavior_Layout = { - 0x7f010005, 0x7f010006, 0x7f010007 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_hideable} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_hideable - */ - public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_peekHeight} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
auto-1
- @attr name net.kdt.pojavlaunch:behavior_peekHeight - */ - public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_skipCollapsed} - attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_skipCollapsed - */ - public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; - /** Attributes that can be used with a ButtonBarLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ButtonBarLayout_allowStacking net.kdt.pojavlaunch:allowStacking}
- @see #ButtonBarLayout_allowStacking - */ - public static final int[] ButtonBarLayout = { - 0x7f010104 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowStacking} - attribute's value can be found in the {@link #ButtonBarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowStacking - */ - public static final int ButtonBarLayout_allowStacking = 0; - /** Attributes that can be used with a CheckBoxPreference. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #CheckBoxPreference_android_disableDependentsState android:disableDependentsState}
{@link #CheckBoxPreference_android_summaryOff android:summaryOff}
{@link #CheckBoxPreference_android_summaryOn android:summaryOn}
{@link #CheckBoxPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #CheckBoxPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #CheckBoxPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
- @see #CheckBoxPreference_android_disableDependentsState - @see #CheckBoxPreference_android_summaryOff - @see #CheckBoxPreference_android_summaryOn - @see #CheckBoxPreference_disableDependentsState - @see #CheckBoxPreference_summaryOff - @see #CheckBoxPreference_summaryOn - */ - public static final int[] CheckBoxPreference = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x7f010151, - 0x7f010152, 0x7f010153 - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:disableDependentsState - */ - public static final int CheckBoxPreference_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:summaryOff - */ - public static final int CheckBoxPreference_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #CheckBoxPreference} array. - @attr name android:summaryOn - */ - public static final int CheckBoxPreference_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int CheckBoxPreference_disableDependentsState = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int CheckBoxPreference_summaryOff = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #CheckBoxPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int CheckBoxPreference_summaryOn = 3; - /** Attributes that can be used with a CollapsingToolbarLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity net.kdt.pojavlaunch:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance net.kdt.pojavlaunch:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim net.kdt.pojavlaunch:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity net.kdt.pojavlaunch:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin net.kdt.pojavlaunch:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom net.kdt.pojavlaunch:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd net.kdt.pojavlaunch:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart net.kdt.pojavlaunch:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop net.kdt.pojavlaunch:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance net.kdt.pojavlaunch:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration net.kdt.pojavlaunch:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger net.kdt.pojavlaunch:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim net.kdt.pojavlaunch:statusBarScrim}
{@link #CollapsingToolbarLayout_title net.kdt.pojavlaunch:title}
{@link #CollapsingToolbarLayout_titleEnabled net.kdt.pojavlaunch:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId net.kdt.pojavlaunch:toolbarId}
- @see #CollapsingToolbarLayout_collapsedTitleGravity - @see #CollapsingToolbarLayout_collapsedTitleTextAppearance - @see #CollapsingToolbarLayout_contentScrim - @see #CollapsingToolbarLayout_expandedTitleGravity - @see #CollapsingToolbarLayout_expandedTitleMargin - @see #CollapsingToolbarLayout_expandedTitleMarginBottom - @see #CollapsingToolbarLayout_expandedTitleMarginEnd - @see #CollapsingToolbarLayout_expandedTitleMarginStart - @see #CollapsingToolbarLayout_expandedTitleMarginTop - @see #CollapsingToolbarLayout_expandedTitleTextAppearance - @see #CollapsingToolbarLayout_scrimAnimationDuration - @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger - @see #CollapsingToolbarLayout_statusBarScrim - @see #CollapsingToolbarLayout_title - @see #CollapsingToolbarLayout_titleEnabled - @see #CollapsingToolbarLayout_toolbarId - */ - public static final int[] CollapsingToolbarLayout = { - 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, - 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, - 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, - 0x7f010014, 0x7f010015, 0x7f010016, 0x7f01005e - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleGravity} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:collapsedTitleGravity - */ - public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapsedTitleTextAppearance} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:collapsedTitleTextAppearance - */ - public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentScrim} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentScrim - */ - public static final int CollapsingToolbarLayout_contentScrim = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleGravity} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:expandedTitleGravity - */ - public static final int CollapsingToolbarLayout_expandedTitleGravity = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMargin} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMargin - */ - public static final int CollapsingToolbarLayout_expandedTitleMargin = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginBottom} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginBottom - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginEnd} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginEnd - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginStart} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginStart - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleMarginTop} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:expandedTitleMarginTop - */ - public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#expandedTitleTextAppearance} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:expandedTitleTextAppearance - */ - public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimAnimationDuration} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:scrimAnimationDuration - */ - public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#scrimVisibleHeightTrigger} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:scrimVisibleHeightTrigger - */ - public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarScrim} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:statusBarScrim - */ - public static final int CollapsingToolbarLayout_statusBarScrim = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int CollapsingToolbarLayout_title = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleEnabled} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleEnabled - */ - public static final int CollapsingToolbarLayout_titleEnabled = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#toolbarId} - attribute's value can be found in the {@link #CollapsingToolbarLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:toolbarId - */ - public static final int CollapsingToolbarLayout_toolbarId = 9; - /** Attributes that can be used with a CollapsingToolbarLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode net.kdt.pojavlaunch:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier net.kdt.pojavlaunch:layout_collapseParallaxMultiplier}
- @see #CollapsingToolbarLayout_Layout_layout_collapseMode - @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier - */ - public static final int[] CollapsingToolbarLayout_Layout = { - 0x7f010017, 0x7f010018 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseMode} - attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
none0
pin1
parallax2
- @attr name net.kdt.pojavlaunch:layout_collapseMode - */ - public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_collapseParallaxMultiplier} - attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_collapseParallaxMultiplier - */ - public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; - /** Attributes that can be used with a ColorStateListItem. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ColorStateListItem_alpha net.kdt.pojavlaunch:alpha}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_android_color android:color}
- @see #ColorStateListItem_alpha - @see #ColorStateListItem_android_alpha - @see #ColorStateListItem_android_color - */ - public static final int[] ColorStateListItem = { - 0x010101a5, 0x0101031f, 0x7f010105 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alpha} - attribute's value can be found in the {@link #ColorStateListItem} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:alpha - */ - public static final int ColorStateListItem_alpha = 2; - /** -

This symbol is the offset where the {@link android.R.attr#alpha} - attribute's value can be found in the {@link #ColorStateListItem} array. - @attr name android:alpha - */ - public static final int ColorStateListItem_android_alpha = 1; - /** -

This symbol is the offset where the {@link android.R.attr#color} - attribute's value can be found in the {@link #ColorStateListItem} array. - @attr name android:color - */ - public static final int ColorStateListItem_android_color = 0; - /** Attributes that can be used with a CompoundButton. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint net.kdt.pojavlaunch:buttonTint}
{@link #CompoundButton_buttonTintMode net.kdt.pojavlaunch:buttonTintMode}
- @see #CompoundButton_android_button - @see #CompoundButton_buttonTint - @see #CompoundButton_buttonTintMode - */ - public static final int[] CompoundButton = { - 0x01010107, 0x7f010106, 0x7f010107 - }; - /** -

This symbol is the offset where the {@link android.R.attr#button} - attribute's value can be found in the {@link #CompoundButton} array. - @attr name android:button - */ - public static final int CompoundButton_android_button = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTint} - attribute's value can be found in the {@link #CompoundButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:buttonTint - */ - public static final int CompoundButton_buttonTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonTintMode} - attribute's value can be found in the {@link #CompoundButton} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:buttonTintMode - */ - public static final int CompoundButton_buttonTintMode = 2; - /** Attributes that can be used with a CoordinatorLayout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CoordinatorLayout_keylines net.kdt.pojavlaunch:keylines}
{@link #CoordinatorLayout_statusBarBackground net.kdt.pojavlaunch:statusBarBackground}
- @see #CoordinatorLayout_keylines - @see #CoordinatorLayout_statusBarBackground - */ - public static final int[] CoordinatorLayout = { - 0x7f010019, 0x7f01001a - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#keylines} - attribute's value can be found in the {@link #CoordinatorLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:keylines - */ - public static final int CoordinatorLayout_keylines = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#statusBarBackground} - attribute's value can be found in the {@link #CoordinatorLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:statusBarBackground - */ - public static final int CoordinatorLayout_statusBarBackground = 1; - /** Attributes that can be used with a CoordinatorLayout_Layout. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor net.kdt.pojavlaunch:layout_anchor}
{@link #CoordinatorLayout_Layout_layout_anchorGravity net.kdt.pojavlaunch:layout_anchorGravity}
{@link #CoordinatorLayout_Layout_layout_behavior net.kdt.pojavlaunch:layout_behavior}
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges net.kdt.pojavlaunch:layout_dodgeInsetEdges}
{@link #CoordinatorLayout_Layout_layout_insetEdge net.kdt.pojavlaunch:layout_insetEdge}
{@link #CoordinatorLayout_Layout_layout_keyline net.kdt.pojavlaunch:layout_keyline}
- @see #CoordinatorLayout_Layout_android_layout_gravity - @see #CoordinatorLayout_Layout_layout_anchor - @see #CoordinatorLayout_Layout_layout_anchorGravity - @see #CoordinatorLayout_Layout_layout_behavior - @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges - @see #CoordinatorLayout_Layout_layout_insetEdge - @see #CoordinatorLayout_Layout_layout_keyline - */ - public static final int[] CoordinatorLayout_Layout = { - 0x010100b3, 0x7f01001b, 0x7f01001c, 0x7f01001d, - 0x7f01001e, 0x7f01001f, 0x7f010020 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - @attr name android:layout_gravity - */ - public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchor} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout_anchor - */ - public static final int CoordinatorLayout_Layout_layout_anchor = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_anchorGravity} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:layout_anchorGravity - */ - public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_behavior} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_behavior - */ - public static final int CoordinatorLayout_Layout_layout_behavior = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_dodgeInsetEdges} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
all0x77
- @attr name net.kdt.pojavlaunch:layout_dodgeInsetEdges - */ - public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_insetEdge} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be one of the following constant values.

- ---- - - - - - - - -
ConstantValueDescription
none0x0
top0x30
bottom0x50
left0x03
right0x03
start0x00800003
end0x00800005
- @attr name net.kdt.pojavlaunch:layout_insetEdge - */ - public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout_keyline} - attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layout_keyline - */ - public static final int CoordinatorLayout_Layout_layout_keyline = 3; - /** Attributes that can be used with a DesignTheme. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme net.kdt.pojavlaunch:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle net.kdt.pojavlaunch:bottomSheetStyle}
{@link #DesignTheme_textColorError net.kdt.pojavlaunch:textColorError}
- @see #DesignTheme_bottomSheetDialogTheme - @see #DesignTheme_bottomSheetStyle - @see #DesignTheme_textColorError - */ - public static final int[] DesignTheme = { - 0x7f010021, 0x7f010022, 0x7f010023 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetDialogTheme} - attribute's value can be found in the {@link #DesignTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:bottomSheetDialogTheme - */ - public static final int DesignTheme_bottomSheetDialogTheme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#bottomSheetStyle} - attribute's value can be found in the {@link #DesignTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:bottomSheetStyle - */ - public static final int DesignTheme_bottomSheetStyle = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textColorError} - attribute's value can be found in the {@link #DesignTheme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:textColorError - */ - public static final int DesignTheme_textColorError = 2; - /** Attributes that can be used with a DialogPreference. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #DialogPreference_android_dialogIcon android:dialogIcon}
{@link #DialogPreference_android_dialogLayout android:dialogLayout}
{@link #DialogPreference_android_dialogMessage android:dialogMessage}
{@link #DialogPreference_android_dialogTitle android:dialogTitle}
{@link #DialogPreference_android_negativeButtonText android:negativeButtonText}
{@link #DialogPreference_android_positiveButtonText android:positiveButtonText}
{@link #DialogPreference_dialogIcon net.kdt.pojavlaunch:dialogIcon}
{@link #DialogPreference_dialogLayout net.kdt.pojavlaunch:dialogLayout}
{@link #DialogPreference_dialogMessage net.kdt.pojavlaunch:dialogMessage}
{@link #DialogPreference_dialogTitle net.kdt.pojavlaunch:dialogTitle}
{@link #DialogPreference_negativeButtonText net.kdt.pojavlaunch:negativeButtonText}
{@link #DialogPreference_positiveButtonText net.kdt.pojavlaunch:positiveButtonText}
- @see #DialogPreference_android_dialogIcon - @see #DialogPreference_android_dialogLayout - @see #DialogPreference_android_dialogMessage - @see #DialogPreference_android_dialogTitle - @see #DialogPreference_android_negativeButtonText - @see #DialogPreference_android_positiveButtonText - @see #DialogPreference_dialogIcon - @see #DialogPreference_dialogLayout - @see #DialogPreference_dialogMessage - @see #DialogPreference_dialogTitle - @see #DialogPreference_negativeButtonText - @see #DialogPreference_positiveButtonText - */ - public static final int[] DialogPreference = { - 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, - 0x010101f6, 0x010101f7, 0x7f010154, 0x7f010155, - 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159 - }; - /** -

This symbol is the offset where the {@link android.R.attr#dialogIcon} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogIcon - */ - public static final int DialogPreference_android_dialogIcon = 2; - /** -

This symbol is the offset where the {@link android.R.attr#dialogLayout} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogLayout - */ - public static final int DialogPreference_android_dialogLayout = 5; - /** -

This symbol is the offset where the {@link android.R.attr#dialogMessage} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogMessage - */ - public static final int DialogPreference_android_dialogMessage = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dialogTitle} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:dialogTitle - */ - public static final int DialogPreference_android_dialogTitle = 0; - /** -

This symbol is the offset where the {@link android.R.attr#negativeButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:negativeButtonText - */ - public static final int DialogPreference_android_negativeButtonText = 4; - /** -

This symbol is the offset where the {@link android.R.attr#positiveButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - @attr name android:positiveButtonText - */ - public static final int DialogPreference_android_positiveButtonText = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogIcon} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogIcon - */ - public static final int DialogPreference_dialogIcon = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogLayout} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogLayout - */ - public static final int DialogPreference_dialogLayout = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogMessage} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogMessage - */ - public static final int DialogPreference_dialogMessage = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogTitle} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dialogTitle - */ - public static final int DialogPreference_dialogTitle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#negativeButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:negativeButtonText - */ - public static final int DialogPreference_negativeButtonText = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#positiveButtonText} - attribute's value can be found in the {@link #DialogPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:positiveButtonText - */ - public static final int DialogPreference_positiveButtonText = 9; - /** Attributes that can be used with a DrawerArrowToggle. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength net.kdt.pojavlaunch:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength net.kdt.pojavlaunch:arrowShaftLength}
{@link #DrawerArrowToggle_barLength net.kdt.pojavlaunch:barLength}
{@link #DrawerArrowToggle_color net.kdt.pojavlaunch:color}
{@link #DrawerArrowToggle_drawableSize net.kdt.pojavlaunch:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars net.kdt.pojavlaunch:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars net.kdt.pojavlaunch:spinBars}
{@link #DrawerArrowToggle_thickness net.kdt.pojavlaunch:thickness}
- @see #DrawerArrowToggle_arrowHeadLength - @see #DrawerArrowToggle_arrowShaftLength - @see #DrawerArrowToggle_barLength - @see #DrawerArrowToggle_color - @see #DrawerArrowToggle_drawableSize - @see #DrawerArrowToggle_gapBetweenBars - @see #DrawerArrowToggle_spinBars - @see #DrawerArrowToggle_thickness - */ - public static final int[] DrawerArrowToggle = { - 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, - 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowHeadLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:arrowHeadLength - */ - public static final int DrawerArrowToggle_arrowHeadLength = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#arrowShaftLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:arrowShaftLength - */ - public static final int DrawerArrowToggle_arrowShaftLength = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#barLength} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:barLength - */ - public static final int DrawerArrowToggle_barLength = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#color} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:color - */ - public static final int DrawerArrowToggle_color = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#drawableSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:drawableSize - */ - public static final int DrawerArrowToggle_drawableSize = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#gapBetweenBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:gapBetweenBars - */ - public static final int DrawerArrowToggle_gapBetweenBars = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spinBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:spinBars - */ - public static final int DrawerArrowToggle_spinBars = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thickness} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thickness - */ - public static final int DrawerArrowToggle_thickness = 7; - /** Attributes that can be used with a FloatingActionButton. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #FloatingActionButton_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
{@link #FloatingActionButton_borderWidth net.kdt.pojavlaunch:borderWidth}
{@link #FloatingActionButton_elevation net.kdt.pojavlaunch:elevation}
{@link #FloatingActionButton_fabSize net.kdt.pojavlaunch:fabSize}
{@link #FloatingActionButton_pressedTranslationZ net.kdt.pojavlaunch:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor net.kdt.pojavlaunch:rippleColor}
{@link #FloatingActionButton_useCompatPadding net.kdt.pojavlaunch:useCompatPadding}
- @see #FloatingActionButton_backgroundTint - @see #FloatingActionButton_backgroundTintMode - @see #FloatingActionButton_borderWidth - @see #FloatingActionButton_elevation - @see #FloatingActionButton_fabSize - @see #FloatingActionButton_pressedTranslationZ - @see #FloatingActionButton_rippleColor - @see #FloatingActionButton_useCompatPadding - */ - public static final int[] FloatingActionButton = { - 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, - 0x7f010028, 0x7f010077, 0x7f01014f, 0x7f010150 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:backgroundTint - */ - public static final int FloatingActionButton_backgroundTint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:backgroundTintMode - */ - public static final int FloatingActionButton_backgroundTintMode = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#borderWidth} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:borderWidth - */ - public static final int FloatingActionButton_borderWidth = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int FloatingActionButton_elevation = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fabSize} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
auto-1
normal0
mini1
- @attr name net.kdt.pojavlaunch:fabSize - */ - public static final int FloatingActionButton_fabSize = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#pressedTranslationZ} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:pressedTranslationZ - */ - public static final int FloatingActionButton_pressedTranslationZ = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#rippleColor} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:rippleColor - */ - public static final int FloatingActionButton_rippleColor = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#useCompatPadding} - attribute's value can be found in the {@link #FloatingActionButton} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:useCompatPadding - */ - public static final int FloatingActionButton_useCompatPadding = 4; - /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide net.kdt.pojavlaunch:behavior_autoHide}
- @see #FloatingActionButton_Behavior_Layout_behavior_autoHide - */ - public static final int[] FloatingActionButton_Behavior_Layout = { - 0x7f010029 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_autoHide} - attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_autoHide - */ - public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; - /** Attributes that can be used with a FontFamily. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #FontFamily_fontProviderAuthority net.kdt.pojavlaunch:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts net.kdt.pojavlaunch:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy net.kdt.pojavlaunch:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout net.kdt.pojavlaunch:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage net.kdt.pojavlaunch:fontProviderPackage}
{@link #FontFamily_fontProviderQuery net.kdt.pojavlaunch:fontProviderQuery}
- @see #FontFamily_fontProviderAuthority - @see #FontFamily_fontProviderCerts - @see #FontFamily_fontProviderFetchStrategy - @see #FontFamily_fontProviderFetchTimeout - @see #FontFamily_fontProviderPackage - @see #FontFamily_fontProviderQuery - */ - public static final int[] FontFamily = { - 0x7f01018c, 0x7f01018d, 0x7f01018e, 0x7f01018f, - 0x7f010190, 0x7f010191 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderAuthority} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderAuthority - */ - public static final int FontFamily_fontProviderAuthority = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderCerts} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fontProviderCerts - */ - public static final int FontFamily_fontProviderCerts = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchStrategy} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
blocking0
async1
- @attr name net.kdt.pojavlaunch:fontProviderFetchStrategy - */ - public static final int FontFamily_fontProviderFetchStrategy = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderFetchTimeout} - attribute's value can be found in the {@link #FontFamily} array. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
forever-1
- @attr name net.kdt.pojavlaunch:fontProviderFetchTimeout - */ - public static final int FontFamily_fontProviderFetchTimeout = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderPackage} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderPackage - */ - public static final int FontFamily_fontProviderPackage = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontProviderQuery} - attribute's value can be found in the {@link #FontFamily} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontProviderQuery - */ - public static final int FontFamily_fontProviderQuery = 2; - /** Attributes that can be used with a FontFamilyFont. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #FontFamilyFont_font net.kdt.pojavlaunch:font}
{@link #FontFamilyFont_fontStyle net.kdt.pojavlaunch:fontStyle}
{@link #FontFamilyFont_fontWeight net.kdt.pojavlaunch:fontWeight}
- @see #FontFamilyFont_font - @see #FontFamilyFont_fontStyle - @see #FontFamilyFont_fontWeight - */ - public static final int[] FontFamilyFont = { - 0x7f010192, 0x7f010193, 0x7f010194 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#font} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:font - */ - public static final int FontFamilyFont_font = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontStyle} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
normal0
italic1
- @attr name net.kdt.pojavlaunch:fontStyle - */ - public static final int FontFamilyFont_fontStyle = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontWeight} - attribute's value can be found in the {@link #FontFamilyFont} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontWeight - */ - public static final int FontFamilyFont_fontWeight = 2; - /** Attributes that can be used with a ForegroundLinearLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding net.kdt.pojavlaunch:foregroundInsidePadding}
- @see #ForegroundLinearLayout_android_foreground - @see #ForegroundLinearLayout_android_foregroundGravity - @see #ForegroundLinearLayout_foregroundInsidePadding - */ - public static final int[] ForegroundLinearLayout = { - 0x01010109, 0x01010200, 0x7f01002a - }; - /** -

This symbol is the offset where the {@link android.R.attr#foreground} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - @attr name android:foreground - */ - public static final int ForegroundLinearLayout_android_foreground = 0; - /** -

This symbol is the offset where the {@link android.R.attr#foregroundGravity} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - @attr name android:foregroundGravity - */ - public static final int ForegroundLinearLayout_android_foregroundGravity = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#foregroundInsidePadding} - attribute's value can be found in the {@link #ForegroundLinearLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:foregroundInsidePadding - */ - public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; - /** Attributes that can be used with a LinearLayoutCompat. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider net.kdt.pojavlaunch:divider}
{@link #LinearLayoutCompat_dividerPadding net.kdt.pojavlaunch:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild net.kdt.pojavlaunch:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers net.kdt.pojavlaunch:showDividers}
- @see #LinearLayoutCompat_android_baselineAligned - @see #LinearLayoutCompat_android_baselineAlignedChildIndex - @see #LinearLayoutCompat_android_gravity - @see #LinearLayoutCompat_android_orientation - @see #LinearLayoutCompat_android_weightSum - @see #LinearLayoutCompat_divider - @see #LinearLayoutCompat_dividerPadding - @see #LinearLayoutCompat_measureWithLargestChild - @see #LinearLayoutCompat_showDividers - */ - public static final int[] LinearLayoutCompat = { - 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f010066, 0x7f010110, 0x7f010111, - 0x7f010112 - }; - /** -

This symbol is the offset where the {@link android.R.attr#baselineAligned} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAligned - */ - public static final int LinearLayoutCompat_android_baselineAligned = 2; - /** -

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAlignedChildIndex - */ - public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:gravity - */ - public static final int LinearLayoutCompat_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#orientation} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:orientation - */ - public static final int LinearLayoutCompat_android_orientation = 1; - /** -

This symbol is the offset where the {@link android.R.attr#weightSum} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:weightSum - */ - public static final int LinearLayoutCompat_android_weightSum = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#divider} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:divider - */ - public static final int LinearLayoutCompat_divider = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dividerPadding} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dividerPadding - */ - public static final int LinearLayoutCompat_dividerPadding = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#measureWithLargestChild} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:measureWithLargestChild - */ - public static final int LinearLayoutCompat_measureWithLargestChild = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showDividers} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- @attr name net.kdt.pojavlaunch:showDividers - */ - public static final int LinearLayoutCompat_showDividers = 7; - /** Attributes that can be used with a LinearLayoutCompat_Layout. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
- @see #LinearLayoutCompat_Layout_android_layout_gravity - @see #LinearLayoutCompat_Layout_android_layout_height - @see #LinearLayoutCompat_Layout_android_layout_weight - @see #LinearLayoutCompat_Layout_android_layout_width - */ - public static final int[] LinearLayoutCompat_Layout = { - 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_gravity - */ - public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout_height} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_height - */ - public static final int LinearLayoutCompat_Layout_android_layout_height = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout_weight} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_weight - */ - public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; - /** -

This symbol is the offset where the {@link android.R.attr#layout_width} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_width - */ - public static final int LinearLayoutCompat_Layout_android_layout_width = 1; - /** Attributes that can be used with a ListPopupWindow. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
- @see #ListPopupWindow_android_dropDownHorizontalOffset - @see #ListPopupWindow_android_dropDownVerticalOffset - */ - public static final int[] ListPopupWindow = { - 0x010102ac, 0x010102ad - }; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownHorizontalOffset - */ - public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownVerticalOffset - */ - public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; - /** Attributes that can be used with a ListPreference. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #ListPreference_android_entries android:entries}
{@link #ListPreference_android_entryValues android:entryValues}
{@link #ListPreference_entries net.kdt.pojavlaunch:entries}
{@link #ListPreference_entryValues net.kdt.pojavlaunch:entryValues}
- @see #ListPreference_android_entries - @see #ListPreference_android_entryValues - @see #ListPreference_entries - @see #ListPreference_entryValues - */ - public static final int[] ListPreference = { - 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b - }; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #ListPreference} array. - @attr name android:entries - */ - public static final int ListPreference_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#entryValues} - attribute's value can be found in the {@link #ListPreference} array. - @attr name android:entryValues - */ - public static final int ListPreference_android_entryValues = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} - attribute's value can be found in the {@link #ListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entries - */ - public static final int ListPreference_entries = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} - attribute's value can be found in the {@link #ListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entryValues - */ - public static final int ListPreference_entryValues = 3; - /** Attributes that can be used with a MenuGroup. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
- @see #MenuGroup_android_checkableBehavior - @see #MenuGroup_android_enabled - @see #MenuGroup_android_id - @see #MenuGroup_android_menuCategory - @see #MenuGroup_android_orderInCategory - @see #MenuGroup_android_visible - */ - public static final int[] MenuGroup = { - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0 - }; - /** -

This symbol is the offset where the {@link android.R.attr#checkableBehavior} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior = 5; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:enabled - */ - public static final int MenuGroup_android_enabled = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:id - */ - public static final int MenuGroup_android_id = 1; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory = 3; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory = 4; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:visible - */ - public static final int MenuGroup_android_visible = 2; - /** Attributes that can be used with a MenuItem. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #MenuItem_actionLayout net.kdt.pojavlaunch:actionLayout}
{@link #MenuItem_actionProviderClass net.kdt.pojavlaunch:actionProviderClass}
{@link #MenuItem_actionViewClass net.kdt.pojavlaunch:actionViewClass}
{@link #MenuItem_alphabeticModifiers net.kdt.pojavlaunch:alphabeticModifiers}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_contentDescription net.kdt.pojavlaunch:contentDescription}
{@link #MenuItem_iconTint net.kdt.pojavlaunch:iconTint}
{@link #MenuItem_iconTintMode net.kdt.pojavlaunch:iconTintMode}
{@link #MenuItem_numericModifiers net.kdt.pojavlaunch:numericModifiers}
{@link #MenuItem_showAsAction net.kdt.pojavlaunch:showAsAction}
{@link #MenuItem_tooltipText net.kdt.pojavlaunch:tooltipText}
- @see #MenuItem_actionLayout - @see #MenuItem_actionProviderClass - @see #MenuItem_actionViewClass - @see #MenuItem_alphabeticModifiers - @see #MenuItem_android_alphabeticShortcut - @see #MenuItem_android_checkable - @see #MenuItem_android_checked - @see #MenuItem_android_enabled - @see #MenuItem_android_icon - @see #MenuItem_android_id - @see #MenuItem_android_menuCategory - @see #MenuItem_android_numericShortcut - @see #MenuItem_android_onClick - @see #MenuItem_android_orderInCategory - @see #MenuItem_android_title - @see #MenuItem_android_titleCondensed - @see #MenuItem_android_visible - @see #MenuItem_contentDescription - @see #MenuItem_iconTint - @see #MenuItem_iconTintMode - @see #MenuItem_numericModifiers - @see #MenuItem_showAsAction - @see #MenuItem_tooltipText - */ - public static final int[] MenuItem = { - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f010113, 0x7f010114, 0x7f010115, - 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, - 0x7f01011a, 0x7f01011b, 0x7f01011c - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionLayout} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:actionLayout - */ - public static final int MenuItem_actionLayout = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionProviderClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:actionProviderClass - */ - public static final int MenuItem_actionProviderClass = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#actionViewClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:actionViewClass - */ - public static final int MenuItem_actionViewClass = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#alphabeticModifiers} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- @attr name net.kdt.pojavlaunch:alphabeticModifiers - */ - public static final int MenuItem_alphabeticModifiers = 13; - /** -

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut = 9; - /** -

This symbol is the offset where the {@link android.R.attr#checkable} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checkable - */ - public static final int MenuItem_android_checkable = 11; - /** -

This symbol is the offset where the {@link android.R.attr#checked} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checked - */ - public static final int MenuItem_android_checked = 3; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:enabled - */ - public static final int MenuItem_android_enabled = 1; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:icon - */ - public static final int MenuItem_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:id - */ - public static final int MenuItem_android_id = 2; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory = 5; - /** -

This symbol is the offset where the {@link android.R.attr#numericShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut = 10; - /** -

This symbol is the offset where the {@link android.R.attr#onClick} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:onClick - */ - public static final int MenuItem_android_onClick = 12; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory = 6; - /** -

This symbol is the offset where the {@link android.R.attr#title} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:title - */ - public static final int MenuItem_android_title = 7; - /** -

This symbol is the offset where the {@link android.R.attr#titleCondensed} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed = 8; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:visible - */ - public static final int MenuItem_android_visible = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentDescription} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentDescription - */ - public static final int MenuItem_contentDescription = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTint} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconTint - */ - public static final int MenuItem_iconTint = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconTintMode} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:iconTintMode - */ - public static final int MenuItem_iconTintMode = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#numericModifiers} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
META0x10000
CTRL0x1000
ALT0x02
SHIFT0x1
SYM0x4
FUNCTION0x8
- @attr name net.kdt.pojavlaunch:numericModifiers - */ - public static final int MenuItem_numericModifiers = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showAsAction} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
- @attr name net.kdt.pojavlaunch:showAsAction - */ - public static final int MenuItem_showAsAction = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tooltipText} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tooltipText - */ - public static final int MenuItem_tooltipText = 20; - /** Attributes that can be used with a MenuView. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing net.kdt.pojavlaunch:preserveIconSpacing}
{@link #MenuView_subMenuArrow net.kdt.pojavlaunch:subMenuArrow}
- @see #MenuView_android_headerBackground - @see #MenuView_android_horizontalDivider - @see #MenuView_android_itemBackground - @see #MenuView_android_itemIconDisabledAlpha - @see #MenuView_android_itemTextAppearance - @see #MenuView_android_verticalDivider - @see #MenuView_android_windowAnimationStyle - @see #MenuView_preserveIconSpacing - @see #MenuView_subMenuArrow - */ - public static final int[] MenuView = { - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f01011d, - 0x7f01011e - }; - /** -

This symbol is the offset where the {@link android.R.attr#headerBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground = 4; - /** -

This symbol is the offset where the {@link android.R.attr#horizontalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider = 2; - /** -

This symbol is the offset where the {@link android.R.attr#itemBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground = 5; - /** -

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha = 6; - /** -

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance = 1; - /** -

This symbol is the offset where the {@link android.R.attr#verticalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider = 3; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preserveIconSpacing} - attribute's value can be found in the {@link #MenuView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:preserveIconSpacing - */ - public static final int MenuView_preserveIconSpacing = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subMenuArrow} - attribute's value can be found in the {@link #MenuView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subMenuArrow - */ - public static final int MenuView_subMenuArrow = 8; - /** Attributes that can be used with a MultiSelectListPreference. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #MultiSelectListPreference_android_entries android:entries}
{@link #MultiSelectListPreference_android_entryValues android:entryValues}
{@link #MultiSelectListPreference_entries net.kdt.pojavlaunch:entries}
{@link #MultiSelectListPreference_entryValues net.kdt.pojavlaunch:entryValues}
- @see #MultiSelectListPreference_android_entries - @see #MultiSelectListPreference_android_entryValues - @see #MultiSelectListPreference_entries - @see #MultiSelectListPreference_entryValues - */ - public static final int[] MultiSelectListPreference = { - 0x010100b2, 0x010101f8, 0x7f01015a, 0x7f01015b - }; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - @attr name android:entries - */ - public static final int MultiSelectListPreference_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#entryValues} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - @attr name android:entryValues - */ - public static final int MultiSelectListPreference_android_entryValues = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entries} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entries - */ - public static final int MultiSelectListPreference_entries = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#entryValues} - attribute's value can be found in the {@link #MultiSelectListPreference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:entryValues - */ - public static final int MultiSelectListPreference_entryValues = 3; - /** Attributes that can be used with a NavigationView. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation net.kdt.pojavlaunch:elevation}
{@link #NavigationView_headerLayout net.kdt.pojavlaunch:headerLayout}
{@link #NavigationView_itemBackground net.kdt.pojavlaunch:itemBackground}
{@link #NavigationView_itemIconTint net.kdt.pojavlaunch:itemIconTint}
{@link #NavigationView_itemTextAppearance net.kdt.pojavlaunch:itemTextAppearance}
{@link #NavigationView_itemTextColor net.kdt.pojavlaunch:itemTextColor}
{@link #NavigationView_menu net.kdt.pojavlaunch:menu}
- @see #NavigationView_android_background - @see #NavigationView_android_fitsSystemWindows - @see #NavigationView_android_maxWidth - @see #NavigationView_elevation - @see #NavigationView_headerLayout - @see #NavigationView_itemBackground - @see #NavigationView_itemIconTint - @see #NavigationView_itemTextAppearance - @see #NavigationView_itemTextColor - @see #NavigationView_menu - */ - public static final int[] NavigationView = { - 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01002b, - 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, - 0x7f010030, 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:background - */ - public static final int NavigationView_android_background = 0; - /** -

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:fitsSystemWindows - */ - public static final int NavigationView_android_fitsSystemWindows = 1; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #NavigationView} array. - @attr name android:maxWidth - */ - public static final int NavigationView_android_maxWidth = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int NavigationView_elevation = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#headerLayout} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:headerLayout - */ - public static final int NavigationView_headerLayout = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemBackground} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemBackground - */ - public static final int NavigationView_itemBackground = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemIconTint} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemIconTint - */ - public static final int NavigationView_itemIconTint = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextAppearance} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:itemTextAppearance - */ - public static final int NavigationView_itemTextAppearance = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#itemTextColor} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:itemTextColor - */ - public static final int NavigationView_itemTextColor = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#menu} - attribute's value can be found in the {@link #NavigationView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:menu - */ - public static final int NavigationView_menu = 3; - /** Attributes that can be used with a PopupWindow. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor net.kdt.pojavlaunch:overlapAnchor}
- @see #PopupWindow_android_popupAnimationStyle - @see #PopupWindow_android_popupBackground - @see #PopupWindow_overlapAnchor - */ - public static final int[] PopupWindow = { - 0x01010176, 0x010102c9, 0x7f01011f - }; - /** -

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} - attribute's value can be found in the {@link #PopupWindow} array. - @attr name android:popupAnimationStyle - */ - public static final int PopupWindow_android_popupAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #PopupWindow} array. - @attr name android:popupBackground - */ - public static final int PopupWindow_android_popupBackground = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#overlapAnchor} - attribute's value can be found in the {@link #PopupWindow} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:overlapAnchor - */ - public static final int PopupWindow_overlapAnchor = 2; - /** Attributes that can be used with a PopupWindowBackgroundState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor net.kdt.pojavlaunch:state_above_anchor}
- @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState = { - 0x7f010120 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#state_above_anchor} - attribute's value can be found in the {@link #PopupWindowBackgroundState} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:state_above_anchor - */ - public static final int PopupWindowBackgroundState_state_above_anchor = 0; - /** Attributes that can be used with a Preference. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Preference_allowDividerAbove net.kdt.pojavlaunch:allowDividerAbove}
{@link #Preference_allowDividerBelow net.kdt.pojavlaunch:allowDividerBelow}
{@link #Preference_android_defaultValue android:defaultValue}
{@link #Preference_android_dependency android:dependency}
{@link #Preference_android_enabled android:enabled}
{@link #Preference_android_fragment android:fragment}
{@link #Preference_android_icon android:icon}
{@link #Preference_android_iconSpaceReserved android:iconSpaceReserved}
{@link #Preference_android_key android:key}
{@link #Preference_android_layout android:layout}
{@link #Preference_android_order android:order}
{@link #Preference_android_persistent android:persistent}
{@link #Preference_android_selectable android:selectable}
{@link #Preference_android_shouldDisableView android:shouldDisableView}
{@link #Preference_android_singleLineTitle android:singleLineTitle}
{@link #Preference_android_summary android:summary}
{@link #Preference_android_title android:title}
{@link #Preference_android_widgetLayout android:widgetLayout}
{@link #Preference_defaultValue net.kdt.pojavlaunch:defaultValue}
{@link #Preference_dependency net.kdt.pojavlaunch:dependency}
{@link #Preference_enabled net.kdt.pojavlaunch:enabled}
{@link #Preference_fragment net.kdt.pojavlaunch:fragment}
{@link #Preference_icon net.kdt.pojavlaunch:icon}
{@link #Preference_iconSpaceReserved net.kdt.pojavlaunch:iconSpaceReserved}
{@link #Preference_key net.kdt.pojavlaunch:key}
{@link #Preference_layout net.kdt.pojavlaunch:layout}
{@link #Preference_order net.kdt.pojavlaunch:order}
{@link #Preference_persistent net.kdt.pojavlaunch:persistent}
{@link #Preference_selectable net.kdt.pojavlaunch:selectable}
{@link #Preference_shouldDisableView net.kdt.pojavlaunch:shouldDisableView}
{@link #Preference_singleLineTitle net.kdt.pojavlaunch:singleLineTitle}
{@link #Preference_summary net.kdt.pojavlaunch:summary}
{@link #Preference_title net.kdt.pojavlaunch:title}
{@link #Preference_widgetLayout net.kdt.pojavlaunch:widgetLayout}
- @see #Preference_allowDividerAbove - @see #Preference_allowDividerBelow - @see #Preference_android_defaultValue - @see #Preference_android_dependency - @see #Preference_android_enabled - @see #Preference_android_fragment - @see #Preference_android_icon - @see #Preference_android_iconSpaceReserved - @see #Preference_android_key - @see #Preference_android_layout - @see #Preference_android_order - @see #Preference_android_persistent - @see #Preference_android_selectable - @see #Preference_android_shouldDisableView - @see #Preference_android_singleLineTitle - @see #Preference_android_summary - @see #Preference_android_title - @see #Preference_android_widgetLayout - @see #Preference_defaultValue - @see #Preference_dependency - @see #Preference_enabled - @see #Preference_fragment - @see #Preference_icon - @see #Preference_iconSpaceReserved - @see #Preference_key - @see #Preference_layout - @see #Preference_order - @see #Preference_persistent - @see #Preference_selectable - @see #Preference_shouldDisableView - @see #Preference_singleLineTitle - @see #Preference_summary - @see #Preference_title - @see #Preference_widgetLayout - */ - public static final int[] Preference = { - 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, - 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, - 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, - 0x010101ee, 0x010102e3, 0x0101055c, 0x01010561, - 0x7f01005e, 0x7f010064, 0x7f010123, 0x7f01015c, - 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, - 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, - 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, - 0x7f010169, 0x7f01016a - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAbove} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAbove - */ - public static final int Preference_allowDividerAbove = 30; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerBelow} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerBelow - */ - public static final int Preference_allowDividerBelow = 31; - /** -

This symbol is the offset where the {@link android.R.attr#defaultValue} - attribute's value can be found in the {@link #Preference} array. - @attr name android:defaultValue - */ - public static final int Preference_android_defaultValue = 11; - /** -

This symbol is the offset where the {@link android.R.attr#dependency} - attribute's value can be found in the {@link #Preference} array. - @attr name android:dependency - */ - public static final int Preference_android_dependency = 10; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #Preference} array. - @attr name android:enabled - */ - public static final int Preference_android_enabled = 2; - /** -

This symbol is the offset where the {@link android.R.attr#fragment} - attribute's value can be found in the {@link #Preference} array. - @attr name android:fragment - */ - public static final int Preference_android_fragment = 13; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #Preference} array. - @attr name android:icon - */ - public static final int Preference_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#iconSpaceReserved} - attribute's value can be found in the {@link #Preference} array. - @attr name android:iconSpaceReserved - */ - public static final int Preference_android_iconSpaceReserved = 15; - /** -

This symbol is the offset where the {@link android.R.attr#key} - attribute's value can be found in the {@link #Preference} array. - @attr name android:key - */ - public static final int Preference_android_key = 6; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #Preference} array. - @attr name android:layout - */ - public static final int Preference_android_layout = 3; - /** -

This symbol is the offset where the {@link android.R.attr#order} - attribute's value can be found in the {@link #Preference} array. - @attr name android:order - */ - public static final int Preference_android_order = 8; - /** -

This symbol is the offset where the {@link android.R.attr#persistent} - attribute's value can be found in the {@link #Preference} array. - @attr name android:persistent - */ - public static final int Preference_android_persistent = 1; - /** -

This symbol is the offset where the {@link android.R.attr#selectable} - attribute's value can be found in the {@link #Preference} array. - @attr name android:selectable - */ - public static final int Preference_android_selectable = 5; - /** -

This symbol is the offset where the {@link android.R.attr#shouldDisableView} - attribute's value can be found in the {@link #Preference} array. - @attr name android:shouldDisableView - */ - public static final int Preference_android_shouldDisableView = 12; - /** -

This symbol is the offset where the {@link android.R.attr#singleLineTitle} - attribute's value can be found in the {@link #Preference} array. - @attr name android:singleLineTitle - */ - public static final int Preference_android_singleLineTitle = 14; - /** -

This symbol is the offset where the {@link android.R.attr#summary} - attribute's value can be found in the {@link #Preference} array. - @attr name android:summary - */ - public static final int Preference_android_summary = 7; - /** -

This symbol is the offset where the {@link android.R.attr#title} - attribute's value can be found in the {@link #Preference} array. - @attr name android:title - */ - public static final int Preference_android_title = 4; - /** -

This symbol is the offset where the {@link android.R.attr#widgetLayout} - attribute's value can be found in the {@link #Preference} array. - @attr name android:widgetLayout - */ - public static final int Preference_android_widgetLayout = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultValue} - attribute's value can be found in the {@link #Preference} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". - @attr name net.kdt.pojavlaunch:defaultValue - */ - public static final int Preference_defaultValue = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dependency} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:dependency - */ - public static final int Preference_dependency = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#enabled} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:enabled - */ - public static final int Preference_enabled = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fragment} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fragment - */ - public static final int Preference_fragment = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#icon} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:icon - */ - public static final int Preference_icon = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconSpaceReserved} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconSpaceReserved - */ - public static final int Preference_iconSpaceReserved = 33; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#key} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:key - */ - public static final int Preference_key = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout - */ - public static final int Preference_layout = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#order} - attribute's value can be found in the {@link #Preference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:order - */ - public static final int Preference_order = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#persistent} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:persistent - */ - public static final int Preference_persistent = 27; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#selectable} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:selectable - */ - public static final int Preference_selectable = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#shouldDisableView} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:shouldDisableView - */ - public static final int Preference_shouldDisableView = 29; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#singleLineTitle} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:singleLineTitle - */ - public static final int Preference_singleLineTitle = 32; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summary} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summary - */ - public static final int Preference_summary = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int Preference_title = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#widgetLayout} - attribute's value can be found in the {@link #Preference} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:widgetLayout - */ - public static final int Preference_widgetLayout = 23; - /** Attributes that can be used with a PreferenceFragment. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceFragment_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragment_android_divider android:divider}
{@link #PreferenceFragment_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragment_android_layout android:layout}
- @see #PreferenceFragment_allowDividerAfterLastItem - @see #PreferenceFragment_android_divider - @see #PreferenceFragment_android_dividerHeight - @see #PreferenceFragment_android_layout - */ - public static final int[] PreferenceFragment = { - 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} - attribute's value can be found in the {@link #PreferenceFragment} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem - */ - public static final int PreferenceFragment_allowDividerAfterLastItem = 3; - /** -

This symbol is the offset where the {@link android.R.attr#divider} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:divider - */ - public static final int PreferenceFragment_android_divider = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dividerHeight} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:dividerHeight - */ - public static final int PreferenceFragment_android_dividerHeight = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #PreferenceFragment} array. - @attr name android:layout - */ - public static final int PreferenceFragment_android_layout = 0; - /** Attributes that can be used with a PreferenceFragmentCompat. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceFragmentCompat_allowDividerAfterLastItem net.kdt.pojavlaunch:allowDividerAfterLastItem}
{@link #PreferenceFragmentCompat_android_divider android:divider}
{@link #PreferenceFragmentCompat_android_dividerHeight android:dividerHeight}
{@link #PreferenceFragmentCompat_android_layout android:layout}
- @see #PreferenceFragmentCompat_allowDividerAfterLastItem - @see #PreferenceFragmentCompat_android_divider - @see #PreferenceFragmentCompat_android_dividerHeight - @see #PreferenceFragmentCompat_android_layout - */ - public static final int[] PreferenceFragmentCompat = { - 0x010100f2, 0x01010129, 0x0101012a, 0x7f01016b - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#allowDividerAfterLastItem} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:allowDividerAfterLastItem - */ - public static final int PreferenceFragmentCompat_allowDividerAfterLastItem = 3; - /** -

This symbol is the offset where the {@link android.R.attr#divider} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:divider - */ - public static final int PreferenceFragmentCompat_android_divider = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dividerHeight} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:dividerHeight - */ - public static final int PreferenceFragmentCompat_android_dividerHeight = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #PreferenceFragmentCompat} array. - @attr name android:layout - */ - public static final int PreferenceFragmentCompat_android_layout = 0; - /** Attributes that can be used with a PreferenceGroup. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #PreferenceGroup_android_orderingFromXml android:orderingFromXml}
{@link #PreferenceGroup_orderingFromXml net.kdt.pojavlaunch:orderingFromXml}
- @see #PreferenceGroup_android_orderingFromXml - @see #PreferenceGroup_orderingFromXml - */ - public static final int[] PreferenceGroup = { - 0x010101e7, 0x7f01016c - }; - /** -

This symbol is the offset where the {@link android.R.attr#orderingFromXml} - attribute's value can be found in the {@link #PreferenceGroup} array. - @attr name android:orderingFromXml - */ - public static final int PreferenceGroup_android_orderingFromXml = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#orderingFromXml} - attribute's value can be found in the {@link #PreferenceGroup} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:orderingFromXml - */ - public static final int PreferenceGroup_orderingFromXml = 1; - /** Attributes that can be used with a PreferenceImageView. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceImageView_android_maxHeight android:maxHeight}
{@link #PreferenceImageView_android_maxWidth android:maxWidth}
{@link #PreferenceImageView_maxHeight net.kdt.pojavlaunch:maxHeight}
{@link #PreferenceImageView_maxWidth net.kdt.pojavlaunch:maxWidth}
- @see #PreferenceImageView_android_maxHeight - @see #PreferenceImageView_android_maxWidth - @see #PreferenceImageView_maxHeight - @see #PreferenceImageView_maxWidth - */ - public static final int[] PreferenceImageView = { - 0x0101011f, 0x01010120, 0x7f01016d, 0x7f01016e - }; - /** -

This symbol is the offset where the {@link android.R.attr#maxHeight} - attribute's value can be found in the {@link #PreferenceImageView} array. - @attr name android:maxHeight - */ - public static final int PreferenceImageView_android_maxHeight = 1; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #PreferenceImageView} array. - @attr name android:maxWidth - */ - public static final int PreferenceImageView_android_maxWidth = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxHeight} - attribute's value can be found in the {@link #PreferenceImageView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxHeight - */ - public static final int PreferenceImageView_maxHeight = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxWidth} - attribute's value can be found in the {@link #PreferenceImageView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxWidth - */ - public static final int PreferenceImageView_maxWidth = 2; - /** Attributes that can be used with a PreferenceTheme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #PreferenceTheme_checkBoxPreferenceStyle net.kdt.pojavlaunch:checkBoxPreferenceStyle}
{@link #PreferenceTheme_dialogPreferenceStyle net.kdt.pojavlaunch:dialogPreferenceStyle}
{@link #PreferenceTheme_dropdownPreferenceStyle net.kdt.pojavlaunch:dropdownPreferenceStyle}
{@link #PreferenceTheme_editTextPreferenceStyle net.kdt.pojavlaunch:editTextPreferenceStyle}
{@link #PreferenceTheme_preferenceActivityStyle net.kdt.pojavlaunch:preferenceActivityStyle}
{@link #PreferenceTheme_preferenceCategoryStyle net.kdt.pojavlaunch:preferenceCategoryStyle}
{@link #PreferenceTheme_preferenceFragmentCompatStyle net.kdt.pojavlaunch:preferenceFragmentCompatStyle}
{@link #PreferenceTheme_preferenceFragmentListStyle net.kdt.pojavlaunch:preferenceFragmentListStyle}
{@link #PreferenceTheme_preferenceFragmentPaddingSide net.kdt.pojavlaunch:preferenceFragmentPaddingSide}
{@link #PreferenceTheme_preferenceFragmentStyle net.kdt.pojavlaunch:preferenceFragmentStyle}
{@link #PreferenceTheme_preferenceHeaderPanelStyle net.kdt.pojavlaunch:preferenceHeaderPanelStyle}
{@link #PreferenceTheme_preferenceInformationStyle net.kdt.pojavlaunch:preferenceInformationStyle}
{@link #PreferenceTheme_preferenceLayoutChild net.kdt.pojavlaunch:preferenceLayoutChild}
{@link #PreferenceTheme_preferenceListStyle net.kdt.pojavlaunch:preferenceListStyle}
{@link #PreferenceTheme_preferencePanelStyle net.kdt.pojavlaunch:preferencePanelStyle}
{@link #PreferenceTheme_preferenceScreenStyle net.kdt.pojavlaunch:preferenceScreenStyle}
{@link #PreferenceTheme_preferenceStyle net.kdt.pojavlaunch:preferenceStyle}
{@link #PreferenceTheme_preferenceTheme net.kdt.pojavlaunch:preferenceTheme}
{@link #PreferenceTheme_ringtonePreferenceStyle net.kdt.pojavlaunch:ringtonePreferenceStyle}
{@link #PreferenceTheme_seekBarPreferenceStyle net.kdt.pojavlaunch:seekBarPreferenceStyle}
{@link #PreferenceTheme_switchPreferenceCompatStyle net.kdt.pojavlaunch:switchPreferenceCompatStyle}
{@link #PreferenceTheme_switchPreferenceStyle net.kdt.pojavlaunch:switchPreferenceStyle}
{@link #PreferenceTheme_yesNoPreferenceStyle net.kdt.pojavlaunch:yesNoPreferenceStyle}
- @see #PreferenceTheme_checkBoxPreferenceStyle - @see #PreferenceTheme_dialogPreferenceStyle - @see #PreferenceTheme_dropdownPreferenceStyle - @see #PreferenceTheme_editTextPreferenceStyle - @see #PreferenceTheme_preferenceActivityStyle - @see #PreferenceTheme_preferenceCategoryStyle - @see #PreferenceTheme_preferenceFragmentCompatStyle - @see #PreferenceTheme_preferenceFragmentListStyle - @see #PreferenceTheme_preferenceFragmentPaddingSide - @see #PreferenceTheme_preferenceFragmentStyle - @see #PreferenceTheme_preferenceHeaderPanelStyle - @see #PreferenceTheme_preferenceInformationStyle - @see #PreferenceTheme_preferenceLayoutChild - @see #PreferenceTheme_preferenceListStyle - @see #PreferenceTheme_preferencePanelStyle - @see #PreferenceTheme_preferenceScreenStyle - @see #PreferenceTheme_preferenceStyle - @see #PreferenceTheme_preferenceTheme - @see #PreferenceTheme_ringtonePreferenceStyle - @see #PreferenceTheme_seekBarPreferenceStyle - @see #PreferenceTheme_switchPreferenceCompatStyle - @see #PreferenceTheme_switchPreferenceStyle - @see #PreferenceTheme_yesNoPreferenceStyle - */ - public static final int[] PreferenceTheme = { - 0x7f01016f, 0x7f010170, 0x7f010171, 0x7f010172, - 0x7f010173, 0x7f010174, 0x7f010175, 0x7f010176, - 0x7f010177, 0x7f010178, 0x7f010179, 0x7f01017a, - 0x7f01017b, 0x7f01017c, 0x7f01017d, 0x7f01017e, - 0x7f01017f, 0x7f010180, 0x7f010181, 0x7f010182, - 0x7f010183, 0x7f010184, 0x7f010185 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#checkBoxPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:checkBoxPreferenceStyle - */ - public static final int PreferenceTheme_checkBoxPreferenceStyle = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dialogPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dialogPreferenceStyle - */ - public static final int PreferenceTheme_dialogPreferenceStyle = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#dropdownPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:dropdownPreferenceStyle - */ - public static final int PreferenceTheme_dropdownPreferenceStyle = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#editTextPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:editTextPreferenceStyle - */ - public static final int PreferenceTheme_editTextPreferenceStyle = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceActivityStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceActivityStyle - */ - public static final int PreferenceTheme_preferenceActivityStyle = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceCategoryStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceCategoryStyle - */ - public static final int PreferenceTheme_preferenceCategoryStyle = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentCompatStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentCompatStyle - */ - public static final int PreferenceTheme_preferenceFragmentCompatStyle = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentListStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentListStyle - */ - public static final int PreferenceTheme_preferenceFragmentListStyle = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentPaddingSide} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:preferenceFragmentPaddingSide - */ - public static final int PreferenceTheme_preferenceFragmentPaddingSide = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceFragmentStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceFragmentStyle - */ - public static final int PreferenceTheme_preferenceFragmentStyle = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceHeaderPanelStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceHeaderPanelStyle - */ - public static final int PreferenceTheme_preferenceHeaderPanelStyle = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceInformationStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceInformationStyle - */ - public static final int PreferenceTheme_preferenceInformationStyle = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceLayoutChild} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceLayoutChild - */ - public static final int PreferenceTheme_preferenceLayoutChild = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceListStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceListStyle - */ - public static final int PreferenceTheme_preferenceListStyle = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferencePanelStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferencePanelStyle - */ - public static final int PreferenceTheme_preferencePanelStyle = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceScreenStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceScreenStyle - */ - public static final int PreferenceTheme_preferenceScreenStyle = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceStyle - */ - public static final int PreferenceTheme_preferenceStyle = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#preferenceTheme} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:preferenceTheme - */ - public static final int PreferenceTheme_preferenceTheme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#ringtonePreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:ringtonePreferenceStyle - */ - public static final int PreferenceTheme_ringtonePreferenceStyle = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:seekBarPreferenceStyle - */ - public static final int PreferenceTheme_seekBarPreferenceStyle = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceCompatStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchPreferenceCompatStyle - */ - public static final int PreferenceTheme_switchPreferenceCompatStyle = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchPreferenceStyle - */ - public static final int PreferenceTheme_switchPreferenceStyle = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#yesNoPreferenceStyle} - attribute's value can be found in the {@link #PreferenceTheme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:yesNoPreferenceStyle - */ - public static final int PreferenceTheme_yesNoPreferenceStyle = 9; - /** Attributes that can be used with a RecycleListView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons net.kdt.pojavlaunch:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle net.kdt.pojavlaunch:paddingTopNoTitle}
- @see #RecycleListView_paddingBottomNoButtons - @see #RecycleListView_paddingTopNoTitle - */ - public static final int[] RecycleListView = { - 0x7f010121, 0x7f010122 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingBottomNoButtons} - attribute's value can be found in the {@link #RecycleListView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingBottomNoButtons - */ - public static final int RecycleListView_paddingBottomNoButtons = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingTopNoTitle} - attribute's value can be found in the {@link #RecycleListView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingTopNoTitle - */ - public static final int RecycleListView_paddingTopNoTitle = 1; - /** Attributes that can be used with a RecyclerView. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_fastScrollEnabled net.kdt.pojavlaunch:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager net.kdt.pojavlaunch:layoutManager}
{@link #RecyclerView_reverseLayout net.kdt.pojavlaunch:reverseLayout}
{@link #RecyclerView_spanCount net.kdt.pojavlaunch:spanCount}
{@link #RecyclerView_stackFromEnd net.kdt.pojavlaunch:stackFromEnd}
- @see #RecyclerView_android_descendantFocusability - @see #RecyclerView_android_orientation - @see #RecyclerView_fastScrollEnabled - @see #RecyclerView_fastScrollHorizontalThumbDrawable - @see #RecyclerView_fastScrollHorizontalTrackDrawable - @see #RecyclerView_fastScrollVerticalThumbDrawable - @see #RecyclerView_fastScrollVerticalTrackDrawable - @see #RecyclerView_layoutManager - @see #RecyclerView_reverseLayout - @see #RecyclerView_spanCount - @see #RecyclerView_stackFromEnd - */ - public static final int[] RecyclerView = { - 0x010100c4, 0x010100f1, 0x7f010052, 0x7f010053, - 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, - 0x7f010058, 0x7f010059, 0x7f01005a - }; - /** -

This symbol is the offset where the {@link android.R.attr#descendantFocusability} - attribute's value can be found in the {@link #RecyclerView} array. - @attr name android:descendantFocusability - */ - public static final int RecyclerView_android_descendantFocusability = 1; - /** -

This symbol is the offset where the {@link android.R.attr#orientation} - attribute's value can be found in the {@link #RecyclerView} array. - @attr name android:orientation - */ - public static final int RecyclerView_android_orientation = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollEnabled} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fastScrollEnabled - */ - public static final int RecyclerView_fastScrollEnabled = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalThumbDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollHorizontalThumbDrawable - */ - public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollHorizontalTrackDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollHorizontalTrackDrawable - */ - public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalThumbDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollVerticalThumbDrawable - */ - public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fastScrollVerticalTrackDrawable} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:fastScrollVerticalTrackDrawable - */ - public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layoutManager} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:layoutManager - */ - public static final int RecyclerView_layoutManager = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#reverseLayout} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:reverseLayout - */ - public static final int RecyclerView_reverseLayout = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#spanCount} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:spanCount - */ - public static final int RecyclerView_spanCount = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#stackFromEnd} - attribute's value can be found in the {@link #RecyclerView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:stackFromEnd - */ - public static final int RecyclerView_stackFromEnd = 5; - /** Attributes that can be used with a ScrimInsetsFrameLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground net.kdt.pojavlaunch:insetForeground}
- @see #ScrimInsetsFrameLayout_insetForeground - */ - public static final int[] ScrimInsetsFrameLayout = { - 0x7f010031 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#insetForeground} - attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name net.kdt.pojavlaunch:insetForeground - */ - public static final int ScrimInsetsFrameLayout_insetForeground = 0; - /** Attributes that can be used with a ScrollingViewBehavior_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop net.kdt.pojavlaunch:behavior_overlapTop}
- @see #ScrollingViewBehavior_Layout_behavior_overlapTop - */ - public static final int[] ScrollingViewBehavior_Layout = { - 0x7f010032 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#behavior_overlapTop} - attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:behavior_overlapTop - */ - public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; - /** Attributes that can be used with a SearchView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon net.kdt.pojavlaunch:closeIcon}
{@link #SearchView_commitIcon net.kdt.pojavlaunch:commitIcon}
{@link #SearchView_defaultQueryHint net.kdt.pojavlaunch:defaultQueryHint}
{@link #SearchView_goIcon net.kdt.pojavlaunch:goIcon}
{@link #SearchView_iconifiedByDefault net.kdt.pojavlaunch:iconifiedByDefault}
{@link #SearchView_layout net.kdt.pojavlaunch:layout}
{@link #SearchView_queryBackground net.kdt.pojavlaunch:queryBackground}
{@link #SearchView_queryHint net.kdt.pojavlaunch:queryHint}
{@link #SearchView_searchHintIcon net.kdt.pojavlaunch:searchHintIcon}
{@link #SearchView_searchIcon net.kdt.pojavlaunch:searchIcon}
{@link #SearchView_submitBackground net.kdt.pojavlaunch:submitBackground}
{@link #SearchView_suggestionRowLayout net.kdt.pojavlaunch:suggestionRowLayout}
{@link #SearchView_voiceIcon net.kdt.pojavlaunch:voiceIcon}
- @see #SearchView_android_focusable - @see #SearchView_android_imeOptions - @see #SearchView_android_inputType - @see #SearchView_android_maxWidth - @see #SearchView_closeIcon - @see #SearchView_commitIcon - @see #SearchView_defaultQueryHint - @see #SearchView_goIcon - @see #SearchView_iconifiedByDefault - @see #SearchView_layout - @see #SearchView_queryBackground - @see #SearchView_queryHint - @see #SearchView_searchHintIcon - @see #SearchView_searchIcon - @see #SearchView_submitBackground - @see #SearchView_suggestionRowLayout - @see #SearchView_voiceIcon - */ - public static final int[] SearchView = { - 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, - 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, - 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, - 0x7f01012f - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:focusable - */ - public static final int SearchView_android_focusable = 0; - /** -

This symbol is the offset where the {@link android.R.attr#imeOptions} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions = 3; - /** -

This symbol is the offset where the {@link android.R.attr#inputType} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:inputType - */ - public static final int SearchView_android_inputType = 2; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#closeIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:closeIcon - */ - public static final int SearchView_closeIcon = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#commitIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:commitIcon - */ - public static final int SearchView_commitIcon = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#defaultQueryHint} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:defaultQueryHint - */ - public static final int SearchView_defaultQueryHint = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#goIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:goIcon - */ - public static final int SearchView_goIcon = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#iconifiedByDefault} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#layout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:layout - */ - public static final int SearchView_layout = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:queryBackground - */ - public static final int SearchView_queryBackground = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#queryHint} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:queryHint - */ - public static final int SearchView_queryHint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchHintIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchHintIcon - */ - public static final int SearchView_searchHintIcon = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#searchIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:searchIcon - */ - public static final int SearchView_searchIcon = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#submitBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:submitBackground - */ - public static final int SearchView_submitBackground = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#suggestionRowLayout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:suggestionRowLayout - */ - public static final int SearchView_suggestionRowLayout = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#voiceIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:voiceIcon - */ - public static final int SearchView_voiceIcon = 12; - /** Attributes that can be used with a SeekBarPreference. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #SeekBarPreference_adjustable net.kdt.pojavlaunch:adjustable}
{@link #SeekBarPreference_android_layout android:layout}
{@link #SeekBarPreference_android_max android:max}
{@link #SeekBarPreference_min net.kdt.pojavlaunch:min}
{@link #SeekBarPreference_seekBarIncrement net.kdt.pojavlaunch:seekBarIncrement}
{@link #SeekBarPreference_showSeekBarValue net.kdt.pojavlaunch:showSeekBarValue}
- @see #SeekBarPreference_adjustable - @see #SeekBarPreference_android_layout - @see #SeekBarPreference_android_max - @see #SeekBarPreference_min - @see #SeekBarPreference_seekBarIncrement - @see #SeekBarPreference_showSeekBarValue - */ - public static final int[] SeekBarPreference = { - 0x010100f2, 0x01010136, 0x7f010186, 0x7f010187, - 0x7f010188, 0x7f010189 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#adjustable} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:adjustable - */ - public static final int SeekBarPreference_adjustable = 4; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #SeekBarPreference} array. - @attr name android:layout - */ - public static final int SeekBarPreference_android_layout = 0; - /** -

This symbol is the offset where the {@link android.R.attr#max} - attribute's value can be found in the {@link #SeekBarPreference} array. - @attr name android:max - */ - public static final int SeekBarPreference_android_max = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#min} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:min - */ - public static final int SeekBarPreference_min = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#seekBarIncrement} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:seekBarIncrement - */ - public static final int SeekBarPreference_seekBarIncrement = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showSeekBarValue} - attribute's value can be found in the {@link #SeekBarPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showSeekBarValue - */ - public static final int SeekBarPreference_showSeekBarValue = 5; - /** Attributes that can be used with a SnackbarLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation net.kdt.pojavlaunch:elevation}
{@link #SnackbarLayout_maxActionInlineWidth net.kdt.pojavlaunch:maxActionInlineWidth}
- @see #SnackbarLayout_android_maxWidth - @see #SnackbarLayout_elevation - @see #SnackbarLayout_maxActionInlineWidth - */ - public static final int[] SnackbarLayout = { - 0x0101011f, 0x7f010033, 0x7f010077 - }; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #SnackbarLayout} array. - @attr name android:maxWidth - */ - public static final int SnackbarLayout_android_maxWidth = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#elevation} - attribute's value can be found in the {@link #SnackbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:elevation - */ - public static final int SnackbarLayout_elevation = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxActionInlineWidth} - attribute's value can be found in the {@link #SnackbarLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxActionInlineWidth - */ - public static final int SnackbarLayout_maxActionInlineWidth = 1; - /** Attributes that can be used with a Spinner. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme net.kdt.pojavlaunch:popupTheme}
- @see #Spinner_android_dropDownWidth - @see #Spinner_android_entries - @see #Spinner_android_popupBackground - @see #Spinner_android_prompt - @see #Spinner_popupTheme - */ - public static final int[] Spinner = { - 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, - 0x7f010078 - }; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownWidth} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth = 3; - /** -

This symbol is the offset where the {@link android.R.attr#entries} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:entries - */ - public static final int Spinner_android_entries = 0; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground = 1; - /** -

This symbol is the offset where the {@link android.R.attr#prompt} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:prompt - */ - public static final int Spinner_android_prompt = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int Spinner_popupTheme = 4; - /** Attributes that can be used with a SwitchCompat. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText net.kdt.pojavlaunch:showText}
{@link #SwitchCompat_splitTrack net.kdt.pojavlaunch:splitTrack}
{@link #SwitchCompat_switchMinWidth net.kdt.pojavlaunch:switchMinWidth}
{@link #SwitchCompat_switchPadding net.kdt.pojavlaunch:switchPadding}
{@link #SwitchCompat_switchTextAppearance net.kdt.pojavlaunch:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding net.kdt.pojavlaunch:thumbTextPadding}
{@link #SwitchCompat_thumbTint net.kdt.pojavlaunch:thumbTint}
{@link #SwitchCompat_thumbTintMode net.kdt.pojavlaunch:thumbTintMode}
{@link #SwitchCompat_track net.kdt.pojavlaunch:track}
{@link #SwitchCompat_trackTint net.kdt.pojavlaunch:trackTint}
{@link #SwitchCompat_trackTintMode net.kdt.pojavlaunch:trackTintMode}
- @see #SwitchCompat_android_textOff - @see #SwitchCompat_android_textOn - @see #SwitchCompat_android_thumb - @see #SwitchCompat_showText - @see #SwitchCompat_splitTrack - @see #SwitchCompat_switchMinWidth - @see #SwitchCompat_switchPadding - @see #SwitchCompat_switchTextAppearance - @see #SwitchCompat_thumbTextPadding - @see #SwitchCompat_thumbTint - @see #SwitchCompat_thumbTintMode - @see #SwitchCompat_track - @see #SwitchCompat_trackTint - @see #SwitchCompat_trackTintMode - */ - public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f010130, - 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, - 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, - 0x7f010139, 0x7f01013a - }; - /** -

This symbol is the offset where the {@link android.R.attr#textOff} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOff - */ - public static final int SwitchCompat_android_textOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textOn} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOn - */ - public static final int SwitchCompat_android_textOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#thumb} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:thumb - */ - public static final int SwitchCompat_android_thumb = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#showText} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:showText - */ - public static final int SwitchCompat_showText = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#splitTrack} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:splitTrack - */ - public static final int SwitchCompat_splitTrack = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchMinWidth} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchMinWidth - */ - public static final int SwitchCompat_switchMinWidth = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchPadding - */ - public static final int SwitchCompat_switchPadding = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextAppearance} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:switchTextAppearance - */ - public static final int SwitchCompat_switchTextAppearance = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTextPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thumbTextPadding - */ - public static final int SwitchCompat_thumbTextPadding = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTint} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:thumbTint - */ - public static final int SwitchCompat_thumbTint = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#thumbTintMode} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:thumbTintMode - */ - public static final int SwitchCompat_thumbTintMode = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#track} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:track - */ - public static final int SwitchCompat_track = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTint} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:trackTint - */ - public static final int SwitchCompat_trackTint = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#trackTintMode} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be one of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
add16
- @attr name net.kdt.pojavlaunch:trackTintMode - */ - public static final int SwitchCompat_trackTintMode = 7; - /** Attributes that can be used with a SwitchPreference. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchPreference_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreference_android_summaryOff android:summaryOff}
{@link #SwitchPreference_android_summaryOn android:summaryOn}
{@link #SwitchPreference_android_switchTextOff android:switchTextOff}
{@link #SwitchPreference_android_switchTextOn android:switchTextOn}
{@link #SwitchPreference_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreference_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreference_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreference_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreference_switchTextOn net.kdt.pojavlaunch:switchTextOn}
- @see #SwitchPreference_android_disableDependentsState - @see #SwitchPreference_android_summaryOff - @see #SwitchPreference_android_summaryOn - @see #SwitchPreference_android_switchTextOff - @see #SwitchPreference_android_switchTextOn - @see #SwitchPreference_disableDependentsState - @see #SwitchPreference_summaryOff - @see #SwitchPreference_summaryOn - @see #SwitchPreference_switchTextOff - @see #SwitchPreference_switchTextOn - */ - public static final int[] SwitchPreference = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, - 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, - 0x7f01018a, 0x7f01018b - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:disableDependentsState - */ - public static final int SwitchPreference_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:summaryOff - */ - public static final int SwitchPreference_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:summaryOn - */ - public static final int SwitchPreference_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:switchTextOff - */ - public static final int SwitchPreference_android_switchTextOff = 4; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreference} array. - @attr name android:switchTextOn - */ - public static final int SwitchPreference_android_switchTextOn = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int SwitchPreference_disableDependentsState = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int SwitchPreference_summaryOff = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int SwitchPreference_summaryOn = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOff - */ - public static final int SwitchPreference_switchTextOff = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreference} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOn - */ - public static final int SwitchPreference_switchTextOn = 8; - /** Attributes that can be used with a SwitchPreferenceCompat. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchPreferenceCompat_android_disableDependentsState android:disableDependentsState}
{@link #SwitchPreferenceCompat_android_summaryOff android:summaryOff}
{@link #SwitchPreferenceCompat_android_summaryOn android:summaryOn}
{@link #SwitchPreferenceCompat_android_switchTextOff android:switchTextOff}
{@link #SwitchPreferenceCompat_android_switchTextOn android:switchTextOn}
{@link #SwitchPreferenceCompat_disableDependentsState net.kdt.pojavlaunch:disableDependentsState}
{@link #SwitchPreferenceCompat_summaryOff net.kdt.pojavlaunch:summaryOff}
{@link #SwitchPreferenceCompat_summaryOn net.kdt.pojavlaunch:summaryOn}
{@link #SwitchPreferenceCompat_switchTextOff net.kdt.pojavlaunch:switchTextOff}
{@link #SwitchPreferenceCompat_switchTextOn net.kdt.pojavlaunch:switchTextOn}
- @see #SwitchPreferenceCompat_android_disableDependentsState - @see #SwitchPreferenceCompat_android_summaryOff - @see #SwitchPreferenceCompat_android_summaryOn - @see #SwitchPreferenceCompat_android_switchTextOff - @see #SwitchPreferenceCompat_android_switchTextOn - @see #SwitchPreferenceCompat_disableDependentsState - @see #SwitchPreferenceCompat_summaryOff - @see #SwitchPreferenceCompat_summaryOn - @see #SwitchPreferenceCompat_switchTextOff - @see #SwitchPreferenceCompat_switchTextOn - */ - public static final int[] SwitchPreferenceCompat = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, - 0x0101036c, 0x7f010151, 0x7f010152, 0x7f010153, - 0x7f01018a, 0x7f01018b - }; - /** -

This symbol is the offset where the {@link android.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:disableDependentsState - */ - public static final int SwitchPreferenceCompat_android_disableDependentsState = 2; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:summaryOff - */ - public static final int SwitchPreferenceCompat_android_summaryOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:summaryOn - */ - public static final int SwitchPreferenceCompat_android_summaryOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:switchTextOff - */ - public static final int SwitchPreferenceCompat_android_switchTextOff = 4; - /** -

This symbol is the offset where the {@link android.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - @attr name android:switchTextOn - */ - public static final int SwitchPreferenceCompat_android_switchTextOn = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#disableDependentsState} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:disableDependentsState - */ - public static final int SwitchPreferenceCompat_disableDependentsState = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOff - */ - public static final int SwitchPreferenceCompat_summaryOff = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#summaryOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:summaryOn - */ - public static final int SwitchPreferenceCompat_summaryOn = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOff} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOff - */ - public static final int SwitchPreferenceCompat_switchTextOff = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#switchTextOn} - attribute's value can be found in the {@link #SwitchPreferenceCompat} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:switchTextOn - */ - public static final int SwitchPreferenceCompat_switchTextOn = 8; - /** Attributes that can be used with a TabItem. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
- @see #TabItem_android_icon - @see #TabItem_android_layout - @see #TabItem_android_text - */ - public static final int[] TabItem = { - 0x01010002, 0x010100f2, 0x0101014f - }; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:icon - */ - public static final int TabItem_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:layout - */ - public static final int TabItem_android_layout = 1; - /** -

This symbol is the offset where the {@link android.R.attr#text} - attribute's value can be found in the {@link #TabItem} array. - @attr name android:text - */ - public static final int TabItem_android_text = 2; - /** Attributes that can be used with a TabLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TabLayout_tabBackground net.kdt.pojavlaunch:tabBackground}
{@link #TabLayout_tabContentStart net.kdt.pojavlaunch:tabContentStart}
{@link #TabLayout_tabGravity net.kdt.pojavlaunch:tabGravity}
{@link #TabLayout_tabIndicatorColor net.kdt.pojavlaunch:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight net.kdt.pojavlaunch:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth net.kdt.pojavlaunch:tabMaxWidth}
{@link #TabLayout_tabMinWidth net.kdt.pojavlaunch:tabMinWidth}
{@link #TabLayout_tabMode net.kdt.pojavlaunch:tabMode}
{@link #TabLayout_tabPadding net.kdt.pojavlaunch:tabPadding}
{@link #TabLayout_tabPaddingBottom net.kdt.pojavlaunch:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd net.kdt.pojavlaunch:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart net.kdt.pojavlaunch:tabPaddingStart}
{@link #TabLayout_tabPaddingTop net.kdt.pojavlaunch:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor net.kdt.pojavlaunch:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance net.kdt.pojavlaunch:tabTextAppearance}
{@link #TabLayout_tabTextColor net.kdt.pojavlaunch:tabTextColor}
- @see #TabLayout_tabBackground - @see #TabLayout_tabContentStart - @see #TabLayout_tabGravity - @see #TabLayout_tabIndicatorColor - @see #TabLayout_tabIndicatorHeight - @see #TabLayout_tabMaxWidth - @see #TabLayout_tabMinWidth - @see #TabLayout_tabMode - @see #TabLayout_tabPadding - @see #TabLayout_tabPaddingBottom - @see #TabLayout_tabPaddingEnd - @see #TabLayout_tabPaddingStart - @see #TabLayout_tabPaddingTop - @see #TabLayout_tabSelectedTextColor - @see #TabLayout_tabTextAppearance - @see #TabLayout_tabTextColor - */ - public static final int[] TabLayout = { - 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, - 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, - 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, - 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 - }; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabBackground} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tabBackground - */ - public static final int TabLayout_tabBackground = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabContentStart} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabContentStart - */ - public static final int TabLayout_tabContentStart = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabGravity} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
fill0
center1
- @attr name net.kdt.pojavlaunch:tabGravity - */ - public static final int TabLayout_tabGravity = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabIndicatorColor - */ - public static final int TabLayout_tabIndicatorColor = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabIndicatorHeight} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabIndicatorHeight - */ - public static final int TabLayout_tabIndicatorHeight = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMaxWidth} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabMaxWidth - */ - public static final int TabLayout_tabMaxWidth = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMinWidth} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabMinWidth - */ - public static final int TabLayout_tabMinWidth = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabMode} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
scrollable0
fixed1
- @attr name net.kdt.pojavlaunch:tabMode - */ - public static final int TabLayout_tabMode = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPadding} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPadding - */ - public static final int TabLayout_tabPadding = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingBottom} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingBottom - */ - public static final int TabLayout_tabPaddingBottom = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingEnd} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingEnd - */ - public static final int TabLayout_tabPaddingEnd = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingStart} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingStart - */ - public static final int TabLayout_tabPaddingStart = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabPaddingTop} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabPaddingTop - */ - public static final int TabLayout_tabPaddingTop = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabSelectedTextColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabSelectedTextColor - */ - public static final int TabLayout_tabSelectedTextColor = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextAppearance} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:tabTextAppearance - */ - public static final int TabLayout_tabTextAppearance = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#tabTextColor} - attribute's value can be found in the {@link #TabLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:tabTextColor - */ - public static final int TabLayout_tabTextColor = 9; - /** Attributes that can be used with a TextAppearance. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_fontFamily net.kdt.pojavlaunch:fontFamily}
{@link #TextAppearance_textAllCaps net.kdt.pojavlaunch:textAllCaps}
- @see #TextAppearance_android_fontFamily - @see #TextAppearance_android_shadowColor - @see #TextAppearance_android_shadowDx - @see #TextAppearance_android_shadowDy - @see #TextAppearance_android_shadowRadius - @see #TextAppearance_android_textColor - @see #TextAppearance_android_textColorHint - @see #TextAppearance_android_textColorLink - @see #TextAppearance_android_textSize - @see #TextAppearance_android_textStyle - @see #TextAppearance_android_typeface - @see #TextAppearance_fontFamily - @see #TextAppearance_textAllCaps - */ - public static final int[] TextAppearance = { - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, - 0x01010163, 0x01010164, 0x010103ac, 0x7f010088, - 0x7f01008e - }; - /** -

This symbol is the offset where the {@link android.R.attr#fontFamily} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:fontFamily - */ - public static final int TextAppearance_android_fontFamily = 10; - /** -

This symbol is the offset where the {@link android.R.attr#shadowColor} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowColor - */ - public static final int TextAppearance_android_shadowColor = 6; - /** -

This symbol is the offset where the {@link android.R.attr#shadowDx} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowDx - */ - public static final int TextAppearance_android_shadowDx = 7; - /** -

This symbol is the offset where the {@link android.R.attr#shadowDy} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowDy - */ - public static final int TextAppearance_android_shadowDy = 8; - /** -

This symbol is the offset where the {@link android.R.attr#shadowRadius} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:shadowRadius - */ - public static final int TextAppearance_android_shadowRadius = 9; - /** -

This symbol is the offset where the {@link android.R.attr#textColor} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColor - */ - public static final int TextAppearance_android_textColor = 3; - /** -

This symbol is the offset where the {@link android.R.attr#textColorHint} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColorHint - */ - public static final int TextAppearance_android_textColorHint = 4; - /** -

This symbol is the offset where the {@link android.R.attr#textColorLink} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColorLink - */ - public static final int TextAppearance_android_textColorLink = 5; - /** -

This symbol is the offset where the {@link android.R.attr#textSize} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textSize - */ - public static final int TextAppearance_android_textSize = 0; - /** -

This symbol is the offset where the {@link android.R.attr#textStyle} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textStyle - */ - public static final int TextAppearance_android_textStyle = 2; - /** -

This symbol is the offset where the {@link android.R.attr#typeface} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:typeface - */ - public static final int TextAppearance_android_typeface = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#fontFamily} - attribute's value can be found in the {@link #TextAppearance} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:fontFamily - */ - public static final int TextAppearance_fontFamily = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#textAllCaps} - attribute's value can be found in the {@link #TextAppearance} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name net.kdt.pojavlaunch:textAllCaps - */ - public static final int TextAppearance_textAllCaps = 11; - /** Attributes that can be used with a TextInputLayout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled net.kdt.pojavlaunch:counterEnabled}
{@link #TextInputLayout_counterMaxLength net.kdt.pojavlaunch:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance net.kdt.pojavlaunch:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance net.kdt.pojavlaunch:counterTextAppearance}
{@link #TextInputLayout_errorEnabled net.kdt.pojavlaunch:errorEnabled}
{@link #TextInputLayout_errorTextAppearance net.kdt.pojavlaunch:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled net.kdt.pojavlaunch:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled net.kdt.pojavlaunch:hintEnabled}
{@link #TextInputLayout_hintTextAppearance net.kdt.pojavlaunch:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription net.kdt.pojavlaunch:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable net.kdt.pojavlaunch:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled net.kdt.pojavlaunch:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint net.kdt.pojavlaunch:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode net.kdt.pojavlaunch:passwordToggleTintMode}
- @see #TextInputLayout_android_hint - @see #TextInputLayout_android_textColorHint - @see #TextInputLayout_counterEnabled - @see #TextInputLayout_counterMaxLength - @see #TextInputLayout_counterOverflowTextAppearance - @see #TextInputLayout_counterTextAppearance - @see #TextInputLayout_errorEnabled - @see #TextInputLayout_errorTextAppearance - @see #TextInputLayout_hintAnimationEnabled - @see #TextInputLayout_hintEnabled - @see #TextInputLayout_hintTextAppearance - @see #TextInputLayout_passwordToggleContentDescription - @see #TextInputLayout_passwordToggleDrawable - @see #TextInputLayout_passwordToggleEnabled - @see #TextInputLayout_passwordToggleTint - @see #TextInputLayout_passwordToggleTintMode - */ - public static final int[] TextInputLayout = { - 0x0101009a, 0x01010150, 0x7f010044, 0x7f010045, - 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, - 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, - 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051 - }; - /** -

This symbol is the offset where the {@link android.R.attr#hint} - attribute's value can be found in the {@link #TextInputLayout} array. - @attr name android:hint - */ - public static final int TextInputLayout_android_hint = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textColorHint} - attribute's value can be found in the {@link #TextInputLayout} array. - @attr name android:textColorHint - */ - public static final int TextInputLayout_android_textColorHint = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:counterEnabled - */ - public static final int TextInputLayout_counterEnabled = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterMaxLength} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:counterMaxLength - */ - public static final int TextInputLayout_counterMaxLength = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterOverflowTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:counterOverflowTextAppearance - */ - public static final int TextInputLayout_counterOverflowTextAppearance = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#counterTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:counterTextAppearance - */ - public static final int TextInputLayout_counterTextAppearance = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:errorEnabled - */ - public static final int TextInputLayout_errorEnabled = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#errorTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:errorTextAppearance - */ - public static final int TextInputLayout_errorTextAppearance = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintAnimationEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hintAnimationEnabled - */ - public static final int TextInputLayout_hintAnimationEnabled = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:hintEnabled - */ - public static final int TextInputLayout_hintEnabled = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#hintTextAppearance} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:hintTextAppearance - */ - public static final int TextInputLayout_hintTextAppearance = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleContentDescription} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleContentDescription - */ - public static final int TextInputLayout_passwordToggleContentDescription = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleDrawable} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:passwordToggleDrawable - */ - public static final int TextInputLayout_passwordToggleDrawable = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleEnabled} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleEnabled - */ - public static final int TextInputLayout_passwordToggleEnabled = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTint} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:passwordToggleTint - */ - public static final int TextInputLayout_passwordToggleTint = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#passwordToggleTintMode} - attribute's value can be found in the {@link #TextInputLayout} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:passwordToggleTintMode - */ - public static final int TextInputLayout_passwordToggleTintMode = 15; - /** Attributes that can be used with a Toolbar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity net.kdt.pojavlaunch:buttonGravity}
{@link #Toolbar_collapseContentDescription net.kdt.pojavlaunch:collapseContentDescription}
{@link #Toolbar_collapseIcon net.kdt.pojavlaunch:collapseIcon}
{@link #Toolbar_contentInsetEnd net.kdt.pojavlaunch:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions net.kdt.pojavlaunch:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft net.kdt.pojavlaunch:contentInsetLeft}
{@link #Toolbar_contentInsetRight net.kdt.pojavlaunch:contentInsetRight}
{@link #Toolbar_contentInsetStart net.kdt.pojavlaunch:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation net.kdt.pojavlaunch:contentInsetStartWithNavigation}
{@link #Toolbar_logo net.kdt.pojavlaunch:logo}
{@link #Toolbar_logoDescription net.kdt.pojavlaunch:logoDescription}
{@link #Toolbar_maxButtonHeight net.kdt.pojavlaunch:maxButtonHeight}
{@link #Toolbar_navigationContentDescription net.kdt.pojavlaunch:navigationContentDescription}
{@link #Toolbar_navigationIcon net.kdt.pojavlaunch:navigationIcon}
{@link #Toolbar_popupTheme net.kdt.pojavlaunch:popupTheme}
{@link #Toolbar_subtitle net.kdt.pojavlaunch:subtitle}
{@link #Toolbar_subtitleTextAppearance net.kdt.pojavlaunch:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor net.kdt.pojavlaunch:subtitleTextColor}
{@link #Toolbar_title net.kdt.pojavlaunch:title}
{@link #Toolbar_titleMargin net.kdt.pojavlaunch:titleMargin}
{@link #Toolbar_titleMarginBottom net.kdt.pojavlaunch:titleMarginBottom}
{@link #Toolbar_titleMarginEnd net.kdt.pojavlaunch:titleMarginEnd}
{@link #Toolbar_titleMarginStart net.kdt.pojavlaunch:titleMarginStart}
{@link #Toolbar_titleMarginTop net.kdt.pojavlaunch:titleMarginTop}
{@link #Toolbar_titleMargins net.kdt.pojavlaunch:titleMargins}
{@link #Toolbar_titleTextAppearance net.kdt.pojavlaunch:titleTextAppearance}
{@link #Toolbar_titleTextColor net.kdt.pojavlaunch:titleTextColor}
- @see #Toolbar_android_gravity - @see #Toolbar_android_minHeight - @see #Toolbar_buttonGravity - @see #Toolbar_collapseContentDescription - @see #Toolbar_collapseIcon - @see #Toolbar_contentInsetEnd - @see #Toolbar_contentInsetEndWithActions - @see #Toolbar_contentInsetLeft - @see #Toolbar_contentInsetRight - @see #Toolbar_contentInsetStart - @see #Toolbar_contentInsetStartWithNavigation - @see #Toolbar_logo - @see #Toolbar_logoDescription - @see #Toolbar_maxButtonHeight - @see #Toolbar_navigationContentDescription - @see #Toolbar_navigationIcon - @see #Toolbar_popupTheme - @see #Toolbar_subtitle - @see #Toolbar_subtitleTextAppearance - @see #Toolbar_subtitleTextColor - @see #Toolbar_title - @see #Toolbar_titleMargin - @see #Toolbar_titleMarginBottom - @see #Toolbar_titleMarginEnd - @see #Toolbar_titleMarginStart - @see #Toolbar_titleMarginTop - @see #Toolbar_titleMargins - @see #Toolbar_titleTextAppearance - @see #Toolbar_titleTextColor - */ - public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f01005e, 0x7f010061, - 0x7f010065, 0x7f010071, 0x7f010072, 0x7f010073, - 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010078, - 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, - 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, - 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, - 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, - 0x7f01014b - }; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:gravity - */ - public static final int Toolbar_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:minHeight - */ - public static final int Toolbar_android_minHeight = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#buttonGravity} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be one or more (separated by '|') of the following constant values.

- ---- - - -
ConstantValueDescription
top0x30
bottom0x50
- @attr name net.kdt.pojavlaunch:buttonGravity - */ - public static final int Toolbar_buttonGravity = 21; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:collapseContentDescription - */ - public static final int Toolbar_collapseContentDescription = 23; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#collapseIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:collapseIcon - */ - public static final int Toolbar_collapseIcon = 22; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEnd - */ - public static final int Toolbar_contentInsetEnd = 6; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetEndWithActions} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetEndWithActions - */ - public static final int Toolbar_contentInsetEndWithActions = 10; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetLeft - */ - public static final int Toolbar_contentInsetLeft = 7; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetRight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetRight - */ - public static final int Toolbar_contentInsetRight = 8; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStart - */ - public static final int Toolbar_contentInsetStart = 5; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#contentInsetStartWithNavigation} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:contentInsetStartWithNavigation - */ - public static final int Toolbar_contentInsetStartWithNavigation = 9; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logo} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:logo - */ - public static final int Toolbar_logo = 4; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#logoDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:logoDescription - */ - public static final int Toolbar_logoDescription = 26; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#maxButtonHeight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:maxButtonHeight - */ - public static final int Toolbar_maxButtonHeight = 20; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:navigationContentDescription - */ - public static final int Toolbar_navigationContentDescription = 25; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#navigationIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:navigationIcon - */ - public static final int Toolbar_navigationIcon = 24; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#popupTheme} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:popupTheme - */ - public static final int Toolbar_popupTheme = 11; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitle} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitle - */ - public static final int Toolbar_subtitle = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:subtitleTextAppearance - */ - public static final int Toolbar_subtitleTextAppearance = 13; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#subtitleTextColor} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:subtitleTextColor - */ - public static final int Toolbar_subtitleTextColor = 28; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#title} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:title - */ - public static final int Toolbar_title = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargin} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMargin - */ - public static final int Toolbar_titleMargin = 14; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginBottom} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginBottom - */ - public static final int Toolbar_titleMarginBottom = 18; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginEnd - */ - public static final int Toolbar_titleMarginEnd = 16; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginStart - */ - public static final int Toolbar_titleMarginStart = 15; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMarginTop} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMarginTop - */ - public static final int Toolbar_titleMarginTop = 17; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleMargins} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleMargins - */ - public static final int Toolbar_titleMargins = 19; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:titleTextAppearance - */ - public static final int Toolbar_titleTextAppearance = 12; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#titleTextColor} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:titleTextColor - */ - public static final int Toolbar_titleTextColor = 27; - /** Attributes that can be used with a View. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd net.kdt.pojavlaunch:paddingEnd}
{@link #View_paddingStart net.kdt.pojavlaunch:paddingStart}
{@link #View_theme net.kdt.pojavlaunch:theme}
- @see #View_android_focusable - @see #View_android_theme - @see #View_paddingEnd - @see #View_paddingStart - @see #View_theme - */ - public static final int[] View = { - 0x01010000, 0x010100da, 0x7f01014c, 0x7f01014d, - 0x7f01014e - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #View} array. - @attr name android:focusable - */ - public static final int View_android_focusable = 1; - /** -

This symbol is the offset where the {@link android.R.attr#theme} - attribute's value can be found in the {@link #View} array. - @attr name android:theme - */ - public static final int View_android_theme = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingEnd} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingEnd - */ - public static final int View_paddingEnd = 3; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#paddingStart} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:paddingStart - */ - public static final int View_paddingStart = 2; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#theme} - attribute's value can be found in the {@link #View} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name net.kdt.pojavlaunch:theme - */ - public static final int View_theme = 4; - /** Attributes that can be used with a ViewBackgroundHelper. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint net.kdt.pojavlaunch:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode net.kdt.pojavlaunch:backgroundTintMode}
- @see #ViewBackgroundHelper_android_background - @see #ViewBackgroundHelper_backgroundTint - @see #ViewBackgroundHelper_backgroundTintMode - */ - public static final int[] ViewBackgroundHelper = { - 0x010100d4, 0x7f01014f, 0x7f010150 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - @attr name android:background - */ - public static final int ViewBackgroundHelper_android_background = 0; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTint} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name net.kdt.pojavlaunch:backgroundTint - */ - public static final int ViewBackgroundHelper_backgroundTint = 1; - /** -

This symbol is the offset where the {@link net.kdt.pojavlaunch.R.attr#backgroundTintMode} - attribute's value can be found in the {@link #ViewBackgroundHelper} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name net.kdt.pojavlaunch:backgroundTintMode - */ - public static final int ViewBackgroundHelper_backgroundTintMode = 2; - /** Attributes that can be used with a ViewStubCompat. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
- @see #ViewStubCompat_android_id - @see #ViewStubCompat_android_inflatedId - @see #ViewStubCompat_android_layout - */ - public static final int[] ViewStubCompat = { - 0x010100d0, 0x010100f2, 0x010100f3 - }; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:id - */ - public static final int ViewStubCompat_android_id = 0; - /** -

This symbol is the offset where the {@link android.R.attr#inflatedId} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:inflatedId - */ - public static final int ViewStubCompat_android_inflatedId = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:layout - */ - public static final int ViewStubCompat_android_layout = 1; - }; -} diff --git a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java index 82d36bc2e..0d80ea750 100644 --- a/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java +++ b/app/src/main/java/com/kdt/minecraftegl/MinecraftEGLInitializer.java @@ -1,18 +1,18 @@ package com.kdt.minecraftegl; +import android.app.*; +import android.content.*; import android.os.*; import android.system.*; -import com.google.android.gles_jni.*; +import dalvik.system.*; import java.lang.reflect.*; import java.util.*; import javax.microedition.khronos.egl.*; import net.kdt.pojavlaunch.*; -import org.lwjgl.opengl.*; -import dalvik.system.*; -import static org.lwjgl.opengl.AndroidContextImplementation.*; -import android.view.*; import net.kdt.pojavlaunch.exit.*; -import javax.microedition.khronos.opengles.*; + +import static org.lwjgl.opengl.AndroidContextImplementation.*; +import android.content.pm.*; public class MinecraftEGLInitializer { @@ -51,11 +51,14 @@ public class MinecraftEGLInitializer System.out.println("eglGetError: " + Integer.toString(eglGetError) + ", success: " + Boolean.toString(eglGetError == EGL10.EGL_SUCCESS)); System.out.println("user.home: " + System.getProperty("user.home")); + ActivityThread.currentActivityThread().getSystemContext().startActivity(new Intent().setComponent(new ComponentName("net.kdt.pojavlaunch", ".CustomControlsActivity"))); + +/* GL10 gl = ((GL10) context.getGL()); gl.glColor4f(0.5f, 0.5f, 0.5f, 0.5f); gl.glClear(GL10.GL_COLOR_BUFFER_BIT); int glErr = gl.glGetError(); - +*/ DexClassLoader classLoader = new DexClassLoader(args[0], args[1], args[2], MinecraftEGLInitializer.class.getClassLoader()); Class minecraftClass = classLoader.loadClass(minecraftMainClass); Method minecraftMethod = minecraftClass.getMethod("main", String[].class); diff --git a/app/src/main/java/net/minecraft/launchwrapper/injector/AlphaVanillaTweakInjector.java b/app/src/main/java/net/minecraft/launchwrapper/injector/AlphaVanillaTweakInjector.java index ec73f52b7..d59482078 100644 --- a/app/src/main/java/net/minecraft/launchwrapper/injector/AlphaVanillaTweakInjector.java +++ b/app/src/main/java/net/minecraft/launchwrapper/injector/AlphaVanillaTweakInjector.java @@ -26,6 +26,7 @@ public class AlphaVanillaTweakInjector implements IClassTransformer { public LauncherFake(Map map) { this.map = map; + this.map.put("fullscreen", "true"); } public void appletResize(int width, int height) { From 169cf25b28dec55eb9064cd2d9f25812bc3bb4d3 Mon Sep 17 00:00:00 2001 From: khanhduytran0 <40482367+khanhduytran0@users.noreply.github.com> Date: Mon, 20 Apr 2020 05:53:04 +0700 Subject: [PATCH 07/10] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a20385bcc..7b50655e9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -# PojavLauncherSource -Source code of PojavLauncher +# PojavLauncher +An open source Minecraft: Java Edition launcher for Android based from Boardwalk. Support up-to Minecraft 1.11 +(Codes has not been sorted yet, it contains ton of classes without packing to module). -https://github.com/khanhduytran0/PojavLauncher +## About this branch +- This branch attempt to launch Minecraft using command line like `dalvikvm` and `app_process`. +- Status: working partial, EGL Context not yet shared. From d0eeef05e20cef0cbfd01fa105a386d0e1f8c1dd Mon Sep 17 00:00:00 2001 From: khanhduytran0 <40482367+khanhduytran0@users.noreply.github.com> Date: Mon, 20 Apr 2020 05:59:59 +0700 Subject: [PATCH 08/10] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b50655e9..1a7433fb9 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,8 @@ An open source Minecraft: Java Edition launcher for Android based from Boardwalk ## About this branch - This branch attempt to launch Minecraft using command line like `dalvikvm` and `app_process`. -- Status: working partial, EGL Context not yet shared. +- Status: working partial, EGL Context not yet shared, process get crashed if attempt to execute OpenGL command. + +## Anything if this successful? +- Able to custom min/max RAM heap. +- Solve some incompatible issues. From 8426c2fbda7d8941993abe939a4145070f7b3562 Mon Sep 17 00:00:00 2001 From: khanhduytran0 <40482367+khanhduytran0@users.noreply.github.com> Date: Thu, 21 May 2020 13:11:42 +0700 Subject: [PATCH 09/10] Solution found! twaik/libcw or shodruky-rhyammer/gl-streaming but I'm busy at v3 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1a7433fb9..fffe0b0fc 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,6 @@ An open source Minecraft: Java Edition launcher for Android based from Boardwalk ## Anything if this successful? - Able to custom min/max RAM heap. - Solve some incompatible issues. + +## Solution found! +- [twaik/libcw](https://github.com/twaik/libcw) or [shodruky-rhyammer/gl-streaming](https://github.com/shodruky-rhyammer/gl-streaming) but I'm busy at v3. From 515d2eaa4e77018dd78f9077532244e11d5c34c9 Mon Sep 17 00:00:00 2001 From: Tran Khanh Duy <40482367+khanhduytran0@users.noreply.github.com> Date: Tue, 28 Jul 2020 06:26:37 +0700 Subject: [PATCH 10/10] Create LICENSE --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..f288702d2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +.