Files
rr3-apk/decompiled-community/resources/res/layout/fingerprint_dialog_layout.xml
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

54 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:textSize="16sp"
android:textColor="?android:attr/textColorSecondary"
android:ellipsize="marquee"
android:id="@+id/fingerprint_subtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:singleLine="true"
android:marqueeRepeatLimit="marquee_forever"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"/>
<TextView
android:textSize="16sp"
android:textColor="?android:attr/textColorSecondary"
android:id="@+id/fingerprint_description"
android:paddingTop="0dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="4"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"/>
<ImageView
android:layout_gravity="center_horizontal"
android:id="@+id/fingerprint_icon"
android:layout_width="@dimen/fingerprint_icon_size"
android:layout_height="@dimen/fingerprint_icon_size"
android:layout_marginTop="32dp"
android:scaleType="fitXY"/>
<TextView
android:textSize="14sp"
android:textColor="?android:attr/textColorSecondary"
android:gravity="center_horizontal"
android:id="@+id/fingerprint_error"
android:paddingTop="16dp"
android:paddingBottom="24dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fingerprint_dialog_touch_sensor"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"
android:accessibilityLiveRegion="polite"/>
</LinearLayout>
</ScrollView>