diff options
author | John Reck <jreck@google.com> | 2011-05-24 15:32:59 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-05-24 15:52:27 -0700 |
commit | 92935a725584211fcd14a99ee4b64b1da25ea61b (patch) | |
tree | 3adad55443b87bdbcb893af9058361a52746321c /res/layout | |
parent | aec5b0930dae41b4d1a0e844dc53c4dd6c66ff07 (diff) | |
download | packages_apps_Browser-92935a725584211fcd14a99ee4b64b1da25ea61b.zip packages_apps_Browser-92935a725584211fcd14a99ee4b64b1da25ea61b.tar.gz packages_apps_Browser-92935a725584211fcd14a99ee4b64b1da25ea61b.tar.bz2 |
Help dialog for useragent switcher lab
Change-Id: I1126f2dae652a36a133aa85a3a8aa823ab875b7b
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/help_dialog_useragent_switcher.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/res/layout/help_dialog_useragent_switcher.xml b/res/layout/help_dialog_useragent_switcher.xml new file mode 100644 index 0000000..cc29a2d --- /dev/null +++ b/res/layout/help_dialog_useragent_switcher.xml @@ -0,0 +1,37 @@ +<?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. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/help_useragent_switcher" /> + + <ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/help_useragent_tablet" /> + + <ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/help_useragent_laptop" /> + +</LinearLayout> |