mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
79 lines
3.1 KiB
XML
79 lines
3.1 KiB
XML
|
<?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/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/test_camera"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/test_camera"/>
|
||
|
<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_bad_data"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/encode_bad_data"/>
|
||
|
</TableRow>
|
||
|
</TableLayout>
|