tor-browser

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

component_locale_settings.xml (1001B)


      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    android:layout_width="match_parent"
      8    android:layout_height="match_parent"
      9    android:focusable="true"
     10    android:focusableInTouchMode="true">
     11 
     12    <androidx.recyclerview.widget.RecyclerView
     13        android:id="@+id/locale_list"
     14        android:layout_width="match_parent"
     15        android:layout_height="0dp"
     16        app:layout_constraintBottom_toBottomOf="parent"
     17        app:layout_constraintEnd_toEndOf="parent"
     18        app:layout_constraintStart_toStartOf="parent"
     19        app:layout_constraintTop_toTopOf="parent" />
     20 
     21 </androidx.constraintlayout.widget.ConstraintLayout>