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"
|
2011-12-17 17:07:14 -08:00
|
|
|
android:layout_height="fill_parent"/>
|
2008-08-19 12:14:09 -07:00
|
|
|
|
2008-10-18 09:23:24 -07:00
|
|
|
<com.google.zxing.client.android.ViewfinderView
|
|
|
|
android:id="@+id/viewfinder_view"
|
|
|
|
android:layout_width="fill_parent"
|
2012-08-25 11:29:17 -07:00
|
|
|
android:layout_height="fill_parent"/>
|
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"
|
2011-12-17 17:07:14 -08:00
|
|
|
android:baselineAligned="false">
|
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"
|
2011-04-05 11:41:12 -07:00
|
|
|
android:gravity="center"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:padding="@dimen/standard_padding">
|
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"
|
2011-04-05 11:41:12 -07:00
|
|
|
android:gravity="right|center_vertical">
|
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"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:layout_marginBottom="@dimen/half_padding"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:adjustViewBounds="true"
|
2010-07-20 15:43:38 -07:00
|
|
|
android:scaleType="centerInside"/>
|
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">
|
|
|
|
|
2012-03-22 05:14:59 -07:00
|
|
|
<TextView android:layout_width="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_format"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:paddingRight="@dimen/half_padding"/>
|
2010-06-14 03:59:24 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/format_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:textColor="@color/result_minor_text"/>
|
2010-06-14 03:59:24 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2012-03-22 05:14:59 -07:00
|
|
|
<TextView android:layout_width="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_type"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:paddingRight="@dimen/half_padding"/>
|
2010-06-14 03:59:24 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/type_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:textColor="@color/result_minor_text"/>
|
2010-06-14 03:59:24 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
2012-03-22 05:14:59 -07:00
|
|
|
<TextView android:layout_width="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_time"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:paddingRight="@dimen/half_padding"/>
|
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"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:textColor="@color/result_minor_text"/>
|
2010-06-14 03:59:24 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
2010-03-26 15:40:09 -07:00
|
|
|
|
2010-06-16 12:49:22 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/meta_text_view_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/msg_default_meta"
|
|
|
|
android:textColor="@color/result_minor_text"
|
|
|
|
android:textStyle="bold"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:paddingRight="@dimen/half_padding"/>
|
2010-06-16 12:49:22 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/meta_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:textColor="@color/result_minor_text"/>
|
2010-06-16 12:49:22 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2008-10-18 09:23:24 -07:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
2011-04-05 11:41:12 -07:00
|
|
|
android:layout_width="wrap_content"
|
2010-06-14 03:59:24 -07:00
|
|
|
android:layout_height="wrap_content">
|
2008-10-18 09:23:24 -07:00
|
|
|
|
2010-10-12 14:35:16 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2011-04-05 11:41:12 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2010-10-12 14:35:16 -07:00
|
|
|
|
|
|
|
<TextView android:id="@+id/contents_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/result_text"
|
|
|
|
android:textColorLink="@color/result_text"
|
|
|
|
android:textSize="22sp"
|
|
|
|
android:paddingLeft="12dip"
|
|
|
|
android:autoLink="web"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/contents_supplement_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/result_text"
|
|
|
|
android:textColorLink="@color/result_text"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:paddingLeft="12dip"
|
2011-08-22 05:08:33 -07:00
|
|
|
android:autoLink="web"/>
|
2010-10-12 14:35:16 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
2008-10-18 09:23:24 -07:00
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/result_button_view"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2011-04-05 11:41:12 -07:00
|
|
|
android:orientation="horizontal"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:gravity="center">
|
|
|
|
|
2011-04-05 11:41:12 -07:00
|
|
|
<Button android:layout_width="0dip"
|
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"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2011-04-05 11:41:12 -07:00
|
|
|
<Button android:layout_width="0dip"
|
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"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2011-04-05 11:41:12 -07:00
|
|
|
<Button android:layout_width="0dip"
|
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"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2011-04-05 11:41:12 -07:00
|
|
|
<Button android:layout_width="0dip"
|
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"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2010-06-15 15:08:02 -07:00
|
|
|
<TextView android:id="@+id/status_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:background="@color/transparent"
|
|
|
|
android:text="@string/msg_default_status"
|
2012-09-10 08:55:44 -07:00
|
|
|
android:textColor="@color/status_text"/>
|
2010-06-15 12:56:32 -07:00
|
|
|
|
2008-08-19 12:14:09 -07:00
|
|
|
</FrameLayout>
|