2008-11-25 14:12:02 -08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2008 ZXing authors
|
|
|
|
|
|
|
|
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="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@color/help_view"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<WebView android:id="@+id/help_contents"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2008-12-02 12:26:21 -08:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:fadingEdge="vertical"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:fadingEdgeLength="12dip"/>
|
2008-11-25 14:12:02 -08:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:orientation="horizontal"
|
2008-12-02 12:26:21 -08:00
|
|
|
android:gravity="center"
|
2010-05-10 07:57:40 -07:00
|
|
|
android:padding="4dip"
|
2008-12-02 12:26:21 -08:00
|
|
|
android:weightSum="1"
|
2008-11-25 14:12:02 -08:00
|
|
|
android:background="@color/help_button_view">
|
|
|
|
|
|
|
|
<Button android:id="@+id/back_button"
|
2008-12-02 12:26:21 -08:00
|
|
|
android:layout_width="0dip"
|
2008-11-25 14:12:02 -08:00
|
|
|
android:layout_height="wrap_content"
|
2010-05-10 07:57:40 -07:00
|
|
|
android:layout_weight="0.5"
|
2008-11-25 14:12:02 -08:00
|
|
|
android:text="@string/button_back"/>
|
|
|
|
|
2008-12-01 08:10:28 -08:00
|
|
|
<Button android:id="@+id/done_button"
|
2008-12-02 12:26:21 -08:00
|
|
|
android:layout_width="0dip"
|
2008-11-25 14:12:02 -08:00
|
|
|
android:layout_height="wrap_content"
|
2010-05-10 07:57:40 -07:00
|
|
|
android:layout_weight="0.5"
|
2008-12-01 08:10:28 -08:00
|
|
|
android:text="@string/button_done"/>
|
2008-11-25 14:12:02 -08:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|