2014-09-11 15:52:59 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-12-22 21:59:52 +08:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/csZbarScannerViewContainer"
|
2014-09-11 15:52:59 +08:00
|
|
|
android:layout_width="match_parent"
|
2014-12-22 21:59:52 +08:00
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/csZbarScannerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/csZbarScannerBackground" >
|
|
|
|
|
|
|
|
<TextView android:id="@+id/csZbarScannerTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top|center_horizontal"
|
|
|
|
android:paddingTop="15dp"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/csZbarScannerTitle"
|
|
|
|
android:textColor="@color/csZbarScannerTextColor"
|
|
|
|
android:background="@color/csZbarScannerTextBackground"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:textSize="20pt" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/csZbarScannerInstructions"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="15dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="12pt"
|
|
|
|
android:textColor="@color/csZbarScannerTextColor"
|
|
|
|
android:background="@color/csZbarScannerTextBackground"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:text="@string/csZbarScannerInstructions" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|