tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

crash_extension_dialog.xml (1823B)


      1 <?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
      5    android:layout_width="match_parent"
      6    android:layout_height="wrap_content"
      7    xmlns:tools="http://schemas.android.com/tools">
      8 
      9    <LinearLayout
     10        android:layout_width="match_parent"
     11        android:layout_height="wrap_content"
     12        android:orientation="vertical">
     13 
     14        <TextView
     15            android:id="@+id/message"
     16            android:layout_width="match_parent"
     17            android:layout_height="wrap_content"
     18            android:layout_marginHorizontal="24dp"
     19            android:layout_marginVertical="8dp"
     20            android:textColor="?attr/textPrimary"
     21            tools:text="@string/extension_process_crash_dialog_message" />
     22 
     23        <Button
     24            android:id="@+id/positive"
     25            style="@style/Widget.AppCompat.Button.Borderless.Colored"
     26            android:layout_width="match_parent"
     27            android:layout_height="wrap_content"
     28            android:text="@string/extension_process_crash_dialog_retry_button_text"
     29            android:textAlignment="textEnd"
     30            android:textColor="?textAccent" />
     31 
     32        <Button
     33            android:id="@+id/negative"
     34            style="@style/Widget.AppCompat.Button.Borderless.Colored"
     35            android:layout_width="match_parent"
     36            android:layout_height="wrap_content"
     37            android:text="@string/extension_process_crash_dialog_disable_extensions_button_text"
     38            android:textAlignment="textEnd"
     39            android:textColor="?textAccent" />
     40    </LinearLayout>
     41 </ScrollView>