- Imported from https://github.com/supermegamestre/Project-Real-Resurrection-3 - APKTool decompilation (Smali bytecode) for modding and rebuilding APK - Supports both 32-bit (armeabi-v7a) and 64-bit (arm64-v8a) architectures - Includes full Smali source, resources, and native libraries - Ready to rebuild APK after modifications with apktool b command - Added comprehensive README-apktool.md with modding guide This branch complements the JADX branches: - Use JADX (main/discord-community) to UNDERSTAND code (readable Java) - Use APKTool (this branch) to MODIFY and REBUILD APK (editable Smali) Total: 44,417 files, 538.51 MB Smali source code
8 lines
1.3 KiB
XML
8 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.browser.browseractions.BrowserActionsFallbackMenuView android:layout_gravity="center" android:orientation="vertical" android:id="@id/browser_actions_menu_view" android:background="@color/browser_actions_bg_grey" android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="280.0dip"
|
|
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<TextView android:textSize="13.0sp" android:textStyle="bold" android:textColor="@color/browser_actions_title_color" android:ellipsize="end" android:gravity="center" android:id="@id/browser_actions_header_text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10.0dip" android:layout_marginBottom="10.0dip" android:maxLines="1" android:paddingStart="20.0dip" android:paddingEnd="20.0dip" />
|
|
<View android:background="@color/browser_actions_divider_color" android:layout_width="fill_parent" android:layout_height="1.0dip" />
|
|
<ListView android:id="@id/browser_actions_menu_items" android:paddingTop="8.0dip" android:paddingBottom="8.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:divider="@null" android:dividerHeight="0.0dip" />
|
|
</androidx.browser.browseractions.BrowserActionsFallbackMenuView>
|