Files
rr3-apk/decompiled/sources/androidx/core/text/HtmlCompat.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

61 lines
2.1 KiB
Java

package androidx.core.text;
import android.annotation.SuppressLint;
import android.text.Html;
import android.text.Spanned;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
@SuppressLint({"InlinedApi"})
/* loaded from: classes.dex */
public final class HtmlCompat {
public static final int FROM_HTML_MODE_COMPACT = 63;
public static final int FROM_HTML_MODE_LEGACY = 0;
public static final int FROM_HTML_OPTION_USE_CSS_COLORS = 256;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_BLOCKQUOTE = 32;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_DIV = 16;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_HEADING = 2;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_LIST = 8;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM = 4;
public static final int FROM_HTML_SEPARATOR_LINE_BREAK_PARAGRAPH = 1;
public static final int TO_HTML_PARAGRAPH_LINES_CONSECUTIVE = 0;
public static final int TO_HTML_PARAGRAPH_LINES_INDIVIDUAL = 1;
@NonNull
public static Spanned fromHtml(@NonNull String str, int i) {
return Api24Impl.fromHtml(str, i);
}
@NonNull
public static Spanned fromHtml(@NonNull String str, int i, @Nullable Html.ImageGetter imageGetter, @Nullable Html.TagHandler tagHandler) {
return Api24Impl.fromHtml(str, i, imageGetter, tagHandler);
}
@NonNull
public static String toHtml(@NonNull Spanned spanned, int i) {
return Api24Impl.toHtml(spanned, i);
}
private HtmlCompat() {
}
@RequiresApi(24)
public static class Api24Impl {
private Api24Impl() {
}
public static Spanned fromHtml(String str, int i) {
return Html.fromHtml(str, i);
}
public static Spanned fromHtml(String str, int i, Html.ImageGetter imageGetter, Html.TagHandler tagHandler) {
return Html.fromHtml(str, i, imageGetter, tagHandler);
}
public static String toHtml(Spanned spanned, int i) {
return Html.toHtml(spanned, i);
}
}
}