diff options
| author | Patrick Scott <phanna@android.com> | 2011-03-14 11:46:43 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-03-14 11:46:43 -0700 |
| commit | 56de1a2ba6bb82f4eaf5930fcbbf799f071526ce (patch) | |
| tree | b650f6beeb5b944ba1005423d9fb464752a84d38 /res | |
| parent | e5c21d900adadbae92fb395d3dce44a75e90a9e7 (diff) | |
| parent | 9206677e461328f15854c5fcb1366d0e261534c6 (diff) | |
| download | packages_apps_Browser-56de1a2ba6bb82f4eaf5930fcbbf799f071526ce.tar.gz packages_apps_Browser-56de1a2ba6bb82f4eaf5930fcbbf799f071526ce.tar.bz2 packages_apps_Browser-56de1a2ba6bb82f4eaf5930fcbbf799f071526ce.zip | |
Merge "Add new auto-login UI." into honeycomb-mr1
Diffstat (limited to 'res')
| -rw-r--r-- | res/anim/autologin_enter.xml | 19 | ||||
| -rw-r--r-- | res/anim/autologin_exit.xml | 19 | ||||
| -rw-r--r-- | res/layout/url_bar.xml | 64 |
3 files changed, 99 insertions, 3 deletions
diff --git a/res/anim/autologin_enter.xml b/res/anim/autologin_enter.xml new file mode 100644 index 000000000..45e52040b --- /dev/null +++ b/res/anim/autologin_enter.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="-100%" android:toYDelta="0" + android:duration="@android:integer/config_longAnimTime"/> diff --git a/res/anim/autologin_exit.xml b/res/anim/autologin_exit.xml new file mode 100644 index 000000000..6faa715d9 --- /dev/null +++ b/res/anim/autologin_exit.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="0" android:toYDelta="-100%" + android:duration="@android:integer/config_longAnimTime"/> diff --git a/res/layout/url_bar.xml b/res/layout/url_bar.xml index f2b32c420..bf184a836 100644 --- a/res/layout/url_bar.xml +++ b/res/layout/url_bar.xml @@ -10,11 +10,68 @@ the specific language governing permissions and limitations under the License. --> -<LinearLayout +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="vertical"> + > + <LinearLayout + android:id="@+id/autologin" + android:background="#FBF0A0" + android:gravity="center_vertical" + android:paddingTop="3dip" + android:visibility="gone" + android:layout_below="@+id/taburlbar" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + <TextView + android:text="@string/autologin_bar_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="@android:color/primary_text_light" + android:paddingLeft="15dip" + android:paddingRight="15dip" + android:textAppearance="?android:attr/textAppearanceMedium"/> + <Button + android:id="@+id/autologin_account" + android:background="@android:drawable/btn_dropdown" + android:textColor="@android:color/primary_text_light" + android:layout_height="wrap_content" + android:layout_width="wrap_content"/> + <Button + android:id="@+id/autologin_login" + android:text="@string/autologin_bar_login_text" + android:background="@android:drawable/btn_default" + android:textColor="@android:color/primary_text_light" + android:layout_marginRight="15dip" + android:layout_height="wrap_content" + android:layout_width="wrap_content" /> + <ProgressBar + android:id="@+id/autologin_progress" + android:indeterminateOnly="true" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:visibility="gone" /> + <TextView + android:id="@+id/autologin_error" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:textColor="#dd6826" + android:text="@string/autologin_bar_error" + android:textAppearance="?android:attr/textAppearanceMedium" + android:visibility="gone" /> + <View + android:layout_width="2dip" + android:layout_height="match_parent" + android:layout_weight="1"/> + <ImageButton + android:id="@+id/autologin_close" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingRight="15dip" + android:background="@null" + android:src="@*android:drawable/btn_close"/> + </LinearLayout> <LinearLayout android:id="@+id/taburlbar" android:layout_width="match_parent" @@ -128,7 +185,8 @@ android:layout_width="match_parent" android:layout_height="22dip" android:background="@null" + android:layout_below="@+id/taburlbar" android:src="@drawable/progress" android:layout_marginTop="-11dip" android:visibility="gone" /> -</LinearLayout> +</RelativeLayout> |
