tor-browser

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

preference_divider.xml (988B)


      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 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
      7    xmlns:app="http://schemas.android.com/apk/res-auto"
      8    android:layout_width="match_parent"
      9    android:layout_height="wrap_content">
     10 
     11    <View
     12        android:id="@+id/horizontal_divider"
     13        android:layout_width="0dp"
     14        android:layout_height="1dp"
     15        android:layout_marginTop="8dp"
     16        android:background="?attr/colorOutlineVariant"
     17        app:layout_constraintBottom_toBottomOf="parent"
     18        app:layout_constraintEnd_toEndOf="parent"
     19        app:layout_constraintStart_toStartOf="parent"
     20        app:layout_constraintTop_toTopOf="parent" />
     21 
     22 </androidx.constraintlayout.widget.ConstraintLayout>