tor-browser

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

fragment_tabstray.xml (1351B)


      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 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
      6    xmlns:app="http://schemas.android.com/apk/res-auto"
      7    xmlns:mozac="http://schemas.android.com/apk/res-auto"
      8    android:layout_width="match_parent"
      9    android:layout_height="match_parent">
     10 
     11    <androidx.appcompat.widget.Toolbar
     12        android:id="@+id/toolbar"
     13        android:layout_width="match_parent"
     14        android:layout_height="wrap_content"
     15        app:layout_constraintEnd_toEndOf="parent"
     16        app:layout_constraintStart_toStartOf="parent"
     17        app:layout_constraintTop_toTopOf="parent"
     18        android:background="#aaaaaa"/>
     19 
     20    <androidx.recyclerview.widget.RecyclerView
     21        android:id="@+id/tabsTray"
     22        android:layout_width="match_parent"
     23        android:layout_height="0dp"
     24        app:layout_constraintBottom_toBottomOf="parent"
     25        app:layout_constraintEnd_toEndOf="parent"
     26        app:layout_constraintStart_toStartOf="parent"
     27        app:layout_constraintTop_toBottomOf="@+id/toolbar" />
     28 
     29 </androidx.constraintlayout.widget.ConstraintLayout>