2010-10-19 23:24:04 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-11-19 23:47:05 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-12-12 10:50:01 +11:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="6dp">
|
2013-11-19 23:47:05 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/repo_add_url" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/edit_uri"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textUri"
|
2013-12-02 20:12:52 -05:00
|
|
|
android:maxLines="2"
|
2014-01-08 13:36:45 +01:00
|
|
|
android:text="@string/https" />
|
2013-11-19 23:47:05 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/repo_add_fingerprint" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/edit_fingerprint"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:digits="0123456789ABCDEFabcedf: "
|
|
|
|
android:inputType="textNoSuggestions"
|
2013-12-02 20:12:52 -05:00
|
|
|
android:maxLines="3"
|
2013-11-19 23:47:05 -05:00
|
|
|
android:typeface="monospace" />
|
|
|
|
|
2013-12-02 20:12:52 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/overwrite_message"
|
2013-11-19 23:47:05 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:drawableLeft="@android:drawable/ic_dialog_alert"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:drawableStart="@android:drawable/ic_dialog_alert"
|
2013-12-02 20:12:52 -05:00
|
|
|
android:drawablePadding="20dp"
|
2013-11-19 23:56:48 -05:00
|
|
|
android:padding="20dp"
|
2013-12-02 20:12:52 -05:00
|
|
|
android:text="@string/repo_delete_to_overwrite"
|
2013-11-19 23:56:48 -05:00
|
|
|
android:textAppearance="@android:style/TextAppearance.Medium"
|
2013-11-19 23:47:05 -05:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</LinearLayout><!--
|
2010-10-19 23:24:04 +01:00
|
|
|
* Copyright (C) 2009 Roberto Jacinto
|
|
|
|
* roberto.jacinto@caixamagica.pt
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-06-07 08:55:39 +01:00
|
|
|
-->
|