Files
brave-core/android/java/brave-res/layout/highlight_layout.xml
T
samartnik 851cdf1f34 [CodeHealth] Separate Brave-specific resources from Chromium overrides (#31571)
[Android] Separate Brave-specific resources from Chromium overrides
2025-10-02 08:50:51 -04:00

39 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<org.chromium.chrome.browser.onboarding.v2.HighlightView
android:id="@+id/highlight_view"
android:layout_width="match_parent"
android:layout_height="@dimen/onboarding_2_layout_height">
</org.chromium.chrome.browser.onboarding.v2.HighlightView>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/stats_bottomsheet_background">
<androidx.viewpager.widget.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"/>
<ImageView
android:id="@+id/onboarding_bottom_sheet_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:layout_gravity="end|top"
android:padding="16dp"
android:src="@drawable/btn_close"
app:tint="@color/onboarding_text_color"/>
</FrameLayout>
</LinearLayout>