mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 22:44:09 -08:00
20490f1bda
git-svn-id: https://zxing.googlecode.com/svn/trunk@2798 59b500cc-1b3d-0410-9834-0bbf25fbcc57
85 lines
3.8 KiB
XML
Executable file
85 lines
3.8 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.
|
|
-->
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
<Button android:id="@+id/run_benchmark"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/benchmark_run"/>
|
|
<Button android:id="@+id/get_camera_parameters"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/get_camera_parameters"/>
|
|
<Button android:id="@+id/scan_product"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_product"/>
|
|
<Button android:id="@+id/scan_qr_code"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_qr_code"/>
|
|
<Button android:id="@+id/scan_anything"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scan_anything"/>
|
|
<Button android:id="@+id/search_book_contents"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/search_book_contents"/>
|
|
<Button android:id="@+id/encode_url"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_url"/>
|
|
<Button android:id="@+id/encode_email"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_email"/>
|
|
<Button android:id="@+id/encode_phone"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_phone"/>
|
|
<Button android:id="@+id/encode_sms"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_sms"/>
|
|
<Button android:id="@+id/encode_contact"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_contact"/>
|
|
<Button android:id="@+id/encode_location"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_location"/>
|
|
<Button android:id="@+id/encode_hidden_data"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_hidden_data"/>
|
|
<Button android:id="@+id/encode_bad_data"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/encode_bad_data"/>
|
|
<Button android:id="@+id/share_via_barcode"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/share_via_barcode"/>
|
|
</LinearLayout>
|
|
</ScrollView>
|