mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
deea2105b7
git-svn-id: https://zxing.googlecode.com/svn/trunk@1988 59b500cc-1b3d-0410-9834-0bbf25fbcc57
103 lines
4.1 KiB
XML
Executable file
103 lines
4.1 KiB
XML
Executable file
<?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.
|
|
-->
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="center_horizontal"
|
|
android:padding="10px">
|
|
<TableRow>
|
|
<Button android:id="@+id/take_test_photos"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/take_test_photos"/>
|
|
<Button android:id="@+id/get_camera_parameters"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/get_camera_parameters"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/scan_product"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_product"/>
|
|
<Button android:id="@+id/scan_qr_code"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_qr_code"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/scan_anything"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_anything"/>
|
|
<Button android:id="@+id/search_book_contents"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/search_book_contents"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/encode_url"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_url"/>
|
|
<Button android:id="@+id/encode_email"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_email"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/encode_phone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_phone"/>
|
|
<Button android:id="@+id/encode_sms"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_sms"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/encode_contact"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_contact"/>
|
|
<Button android:id="@+id/encode_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_location"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/encode_hidden_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_hidden_data"/>
|
|
<Button android:id="@+id/encode_bad_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_bad_data"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<Button android:id="@+id/share_via_barcode"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/share_via_barcode"/>
|
|
<Button android:id="@+id/run_benchmark"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/benchmark_run"/>
|
|
</TableRow>
|
|
</TableLayout>
|