replaced copied AOSP code with own implementation

This commit is contained in:
Philipp Schaefer
2014-07-21 20:47:40 +02:00
parent 0218bd5565
commit b96f054424
4 changed files with 53 additions and 249 deletions

View File

@ -1,62 +1,26 @@
<?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" />
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/username_edit"
android:layout_height="wrap_content"
android:id="@+id/username"
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" />
android:layout_marginTop="16dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:hint="@string/username" />
<EditText
android:id="@+id/password_edit"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:scrollHorizontally="true"
android:id="@+id/password"
android:inputType="textPassword"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginBottom="12dip"
android:singleLine="true"
android:imeOptions="actionDone" />
</LinearLayout>
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="16dp"
android:hint="@string/password"/>
</LinearLayout>

View File

@ -219,22 +219,11 @@
<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="username">Username</string>
<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="sign_in_action">Sign in</string>
<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>