tor-browser

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

login_options_menu.xml (1367B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4   - License, v. 2.0. If a copy of the MPL was not distributed with this
      5   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 
      7 <menu xmlns:android="http://schemas.android.com/apk/res/android"
      8    xmlns:app="http://schemas.android.com/apk/res-auto"
      9    android:id="@+id/loginOptionsEditDelete"
     10    android:contentDescription="@string/login_options_menu_2"
     11    android:title="@string/login_options_menu_2"
     12    app:showAsAction="never" >
     13 
     14    <item
     15        android:id="@+id/edit_login_button"
     16        android:contentDescription="@string/login_menu_edit_button"
     17        android:icon="@drawable/ic_edit"
     18        android:minWidth="82dp"
     19        android:padding="20dp"
     20        android:paddingStart="20dp"
     21        android:title="@string/login_menu_edit_button"
     22        app:iconTint="?attr/textPrimary"
     23        app:showAsAction="never" />
     24 
     25    <item
     26        android:id="@+id/delete_login_button"
     27        android:contentDescription="@string/login_menu_delete_button"
     28        android:icon="@drawable/ic_delete"
     29        android:minWidth="82dp"
     30        android:padding="20dp"
     31        android:paddingStart="20dp"
     32        android:title="@string/login_menu_delete_button"
     33        app:iconTint="?attr/textPrimary"
     34        app:showAsAction="never" />
     35 </menu>