I am facing some problem in button placement. I am developing an app in which when app starts camera opens (customized). I have added 2 buttons in the Layout, My problem is I am unable to adjust the buttons. I want buttons to placed like capture button will be at bottom in center, and upload button will be at bottom in right. I am using following code.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout
android:id="@+id/camera_preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
>
</FrameLayout>
<Button
android:id="@+id/button_upload"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:text="Upload"
/>
<Button
android:id="@+id/button_capture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:text="Capture" />
</RelativeLayout>
I have also tried with LinearLayout. Can anyone tell me where I am making mistake? Thanks in advance.
