tor-browser

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

activity_settings.xml (822B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout
      3    xmlns:android="http://schemas.android.com/apk/res/android"
      4    xmlns:app="http://schemas.android.com/apk/res-auto"
      5    android:layout_width="match_parent"
      6    android:layout_height="match_parent"
      7    android:orientation="vertical">
      8 
      9    <androidx.appcompat.widget.Toolbar
     10        android:id="@+id/toolbar"
     11        android:layout_width="match_parent"
     12        android:layout_height="wrap_content"
     13        android:background="@color/colorBackgroundDark"
     14        app:theme="@style/ToolBarStyle"
     15        android:elevation="4dp"/>
     16 
     17    <FrameLayout
     18        android:id="@+id/container"
     19        android:layout_width="match_parent"
     20        android:layout_height="0dp"
     21        android:layout_weight="1"
     22        android:background="@color/colorPrimaryDark"/>
     23 
     24 </LinearLayout>