diff options
author | John Reck <jreck@google.com> | 2011-04-20 15:31:13 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-04-21 18:01:44 -0700 |
commit | 40badf29facf6b5ca894a092062cc27897d2b434 (patch) | |
tree | 083699669acc539e30aa2e8b0ccd447eb1b5ddd9 /res/layout | |
parent | fedb492d1ac1068e17028b6d4083d1a6b0578287 (diff) | |
download | packages_apps_browser-40badf29facf6b5ca894a092062cc27897d2b434.zip packages_apps_browser-40badf29facf6b5ca894a092062cc27897d2b434.tar.gz packages_apps_browser-40badf29facf6b5ca894a092062cc27897d2b434.tar.bz2 |
Add minimum font size support
Change-Id: I2dc092f7484ff63ce90f15c2c46c7029c84265e8
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/min_font_size.xml | 38 | ||||
-rw-r--r-- | res/layout/webview_preview.xml | 38 |
2 files changed, 76 insertions, 0 deletions
diff --git a/res/layout/min_font_size.xml b/res/layout/min_font_size.xml new file mode 100644 index 0000000..d4d1314 --- /dev/null +++ b/res/layout/min_font_size.xml @@ -0,0 +1,38 @@ +<?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="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:paddingRight="6dip" + android:paddingTop="6dip" + android:paddingBottom="6dip" + android:paddingLeft="8dip"> + + <TextView + android:text="@string/pref_min_font_size" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" /> + + <SeekBar + android:id="@+id/seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + +</LinearLayout> + diff --git a/res/layout/webview_preview.xml b/res/layout/webview_preview.xml new file mode 100644 index 0000000..6edbcce --- /dev/null +++ b/res/layout/webview_preview.xml @@ -0,0 +1,38 @@ +<?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="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:paddingRight="6dip" + android:paddingTop="6dip" + android:paddingBottom="6dip" + android:paddingLeft="8dip"> + + <TextView + android:text="@string/preview" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" /> + + <WebView + android:id="@+id/webview" + android:layout_width="match_parent" + android:layout_height="180dp" /> + +</LinearLayout> + |