zbar_capture.xml 904 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent" >
  9. <FrameLayout
  10. android:id="@+id/cameraPreview"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent" />
  13. <TextView
  14. android:id="@+id/scanText"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:layout_alignParentBottom="true"
  18. android:gravity="center_horizontal"
  19. android:textSize="18dp"
  20. android:text="正在扫描....." >
  21. </TextView>
  22. </RelativeLayout>
  23. </LinearLayout>