2008-08-19 12:14:09 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2008-10-18 09:23:24 -07:00
|
|
|
Copyright (C) 2008 ZXing authors
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<SurfaceView android:id="@+id/preview_view"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_centerInParent="true"/>
|
|
|
|
|
2008-10-18 09:23:24 -07:00
|
|
|
<com.google.zxing.client.android.ViewfinderView
|
|
|
|
android:id="@+id/viewfinder_view"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@color/transparent"/>
|
2008-08-19 12:14:09 -07:00
|
|
|
|
2008-10-18 09:23:24 -07:00
|
|
|
<LinearLayout android:id="@+id/result_view"
|
2008-08-19 12:14:09 -07:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:background="@color/result_view"
|
|
|
|
android:visibility="gone"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:padding="4dip">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="top"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:padding="12dip">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="right">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
|
|
|
<ImageView android:id="@+id/barcode_image_view"
|
2010-03-30 11:33:11 -07:00
|
|
|
android:layout_width="160dip"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
2010-03-30 11:33:11 -07:00
|
|
|
android:maxWidth="160dip"
|
|
|
|
android:maxHeight="160dip"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:layout_marginBottom="4dip"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:adjustViewBounds="true"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:scaleType="fitEnd"/>
|
2008-10-18 09:23:24 -07:00
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/format_text_view_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_format"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:paddingRight="4dip"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/format_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/type_text_view_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_type"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:paddingRight="4dip"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/type_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<TextView android:id="@+id/time_text_view_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_time"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:paddingRight="4dip"/>
|
2008-10-18 09:23:24 -07:00
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<TextView android:id="@+id/time_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2010-03-26 15:40:09 -07:00
|
|
|
|
2008-10-18 09:23:24 -07:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="wrap_content">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/contents_text_view"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:textColor="@color/result_text"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:textColorLink="@color/result_text"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:textSize="22sp"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:paddingLeft="12dip"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:autoLink="web"/>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/result_button_view"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center">
|
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<Button android:layout_width="0sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="14sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<Button android:layout_width="0sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="14sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<Button android:layout_width="0sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="14sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2010-06-14 03:59:24 -07:00
|
|
|
<Button android:layout_width="0sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="14sp"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@color/transparent">
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
<FrameLayout
|
2008-10-18 09:23:24 -07:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@color/transparent"/>
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/status_view"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@color/status_view"
|
|
|
|
android:baselineAligned="false"
|
2009-10-22 07:51:53 -07:00
|
|
|
android:padding="4dip">
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/status_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left|center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/msg_default_status"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:textColor="@color/status_text"
|
|
|
|
android.textSize="14sp"/>
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|