tor-browser

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

activity_crash.xml (1420B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 
      6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      7    android:id="@+id/container"
      8    android:layout_width="match_parent"
      9    android:layout_height="match_parent"
     10    android:orientation="vertical">
     11 
     12    <Button
     13        android:id="@+id/crashButton"
     14        android:layout_width="match_parent"
     15        android:layout_height="wrap_content"
     16        android:text="@string/crash_nonfatal"
     17        android:textAlignment="center" />
     18 
     19    <Button
     20        android:id="@+id/fatalCrashButton"
     21        android:layout_width="match_parent"
     22        android:layout_height="wrap_content"
     23        android:text="@string/crash_fatal"
     24        android:textAlignment="center" />
     25 
     26    <Button
     27        android:id="@+id/fatalServiceCrashButton"
     28        android:layout_width="match_parent"
     29        android:layout_height="wrap_content"
     30        android:text="@string/crash_fatal_service"
     31        android:textAlignment="center" />
     32 
     33    <Button
     34        android:id="@+id/crashList"
     35        android:layout_width="match_parent"
     36        android:layout_height="wrap_content"
     37        android:text="@string/list_of_crashes"
     38        android:textAlignment="center" />
     39 
     40 </LinearLayout>