added http proxy authentication (see #819)

This commit is contained in:
Philipp Schaefer
2014-07-16 12:57:47 +02:00
parent 4781ea9627
commit 578c367f5b
5 changed files with 286 additions and 0 deletions

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/username"
android:layout_marginTop="12dip"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip" />
<EditText
android:id="@+id/username_edit"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:scrollHorizontally="true"
android:inputType="text"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginBottom="12dip"
android:singleLine="true"
android:imeOptions="actionNext" />
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/password"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip" />
<EditText
android:id="@+id/password_edit"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:scrollHorizontally="true"
android:inputType="textPassword"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginBottom="12dip"
android:singleLine="true"
android:imeOptions="actionDone" />
</LinearLayout>

View File

@ -219,6 +219,23 @@
<string name="msg_copied">Copied to clipboard…</string>
<string name="notice_do_not_show_again">Do not show again</string>
<!-- Sign-in dialog -->
<string name="sign_in_to">Sign in to %1$s %2$s"</string>
<!-- Prompt for an input box that allows the user to enter their login name -->
<string name="username">Name</string>
<!-- Prompt for an input box that allows the user to enter their password -->
<string name="password">Password</string>
<!-- The label on the "sign in" button -->
<string name="action">Sign in</string>
<!-- The name of the add bookmark page activity.-->
<string name="bookmarks_add_page">Save bookmark</string>
<!-- The name of the bookmarks and history search suggestion source. -->
<string name="bookmarks_search">Browser</string>
<!-- Label for a cancel button. It is used for multiple cancel buttons in different contexts -->
<string name="cancel">Cancel</string>
<!-- Label for a confirm button. Used in multiple contexts. -->
<string name="ok">OK</string>
<string name="tab_map">Locate</string>
<string name="tab_share">Share</string>
<string name="tab_browser">Intel</string>