I was wondering if there is some way to have a camera preview fill a part of the screen, and at the bottom have a textview box into which I can add text later. I don't have any code yet because my team is still evaluating if this is possible at all before proceeding with the code.

Edit 2: Now I am finally able to see the text on the screen after playing around with android:gravity. But the TextView always shows up on the top of the screen, is there some way to move it to the bottom?

Edit 3: Changing android:layout_height to fill_parent instead of wrap_content fixed the positioning issue

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
      <SurfaceView android:id="@+id/preview_view"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:layout_centerInParent="true"/>
      <com.google.zxing.client.android.ViewfinderView
           android:id="@+id/viewfinder_view"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:background="@color/transparent"/>
      ........
      ........
      <TextView android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:gravity="bottom" 
           android:text="Header text"/>

</FrameLayout>
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Yes, this is possible. You should use FrameLayout for this. Here is an example:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent">

  <SurfaceView android:id="@+id/preview_view"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
               android:layout_centerInParent="true"/>

  <TextView android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="top|center_horizontal" 
            android:text="Header text"/>

</FrameLayout>
link|improve this answer
Thanks for the answer, I should have mentioned that the camera preview I'm getting is actually extended from Zxing's barcode scanner. I want to reduce the camera preview size, and have a Textview at the bottom. I've tried adding the TextView as both of you suggested, but I'm unable to see any difference. For your reference I will attach the zxing xml file – Rahul Popuri Sep 28 '11 at 2:52
It works now! But a slight problem, I've edited my post to include the code I'm working on. The gravity doesn't seem to work properly :/ Do I need a linear layout somewhere? – Rahul Popuri Sep 28 '11 at 3:13
You used android:layout_height="wrap_content", while it should be fill_parent for horizontal gravity to make sense/work. – inazaruk Sep 28 '11 at 6:21
feedback

yes it is possible like this:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >

  <android.view.SurfaceView
  android:id="@+id/surface"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" />

<TextView
    android:id = "@+id/txtview"
    android:layout_width = "wrap_content"
    android:layout_height = "wrap_content"
    android:text = "TextView"
    android:padding = "7dp"
    android:gravity = "bottom" />

</FrameLayout>
link|improve this answer
Is there any way to set both answers as accepted.. I'm only able to set one. Thank you for the help, I got it to work now somewhat, but I'm unable to change the position of the textview to the bottom.. it always shows up on the top. Any tips? – Rahul Popuri Sep 28 '11 at 3:14
That's ok and I think you got the solution what u asked....cheers.... – Vineet Shukla Sep 28 '11 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.