Кнопка Android отсутствует после просмотра содержимого

У меня есть макет кадра с несколькими кнопками:

setContentView(R.layout.main_layout);

После того, как я вызываю эту функцию камеры,

addContentView(mPreview, newFrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT));

Это полностью экранирует мой макет XML. Мне нужна кнопка в верхней части окна камеры, как я могу это сделать?

Это мой класс камеры:

import android.content.Context;
import android.hardware.Camera;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import java.io.IOException;

public class CameraSurfaceView extends SurfaceView implements SurfaceHolder.Callback {

Camera mCamera;
boolean isPreviewRunning = false;

CameraSurfaceView(Context context) {
    super(context);
    SurfaceHolder mHolder = getHolder();
    mHolder.addCallback(this);
    mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
}

public void surfaceCreated(SurfaceHolder holder) {
    synchronized(this) {
        mCamera = Camera.open();
        try {
            mCamera.setPreviewDisplay(holder);
        } catch (IOException e) {
            Log.e("Camera", "mCamera.setPreviewDisplay(holder);");
        }
        mCamera.setDisplayOrientation(90);
        mCamera.startPreview();

    }
}

public void surfaceDestroyed(SurfaceHolder holder) {
    synchronized(this) {
        try {
            if (mCamera!=null) {
                mCamera.stopPreview();
                isPreviewRunning=false;
                mCamera.release();
            }
        } catch (Exception e) {
            Log.e("Camera", e.getMessage());
        }
    }
}

public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {

}

}

Это мой макет XML:

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

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Background"
    android:id="@+id/background"
    android:onClick="background"
    android:layout_gravity="left|bottom" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Camera"
    android:id="@+id/camera"
    android:onClick="camera"
    android:layout_gravity="right|bottom" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Save"
    android:id="@+id/save"
    android:onClick="save"
    android:layout_gravity="center_horizontal|bottom" />

</FrameLayout>

1 ответ

Решение

Это связано с тем, что представление, добавленное в конце, находится сверху в framelayout.

Я предлагаю вам сделать контейнер (любой макет) в макете фрейма в начале макета и поместить вид с камеры в этот контейнер.

что-то вроде:

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

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:id="@+id/cameracontainer"></LinearLayout>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Background"
    android:id="@+id/background"
    android:onClick="background"
    android:layout_gravity="left|bottom" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Camera"
    android:id="@+id/camera"
    android:onClick="camera"
    android:layout_gravity="right|bottom" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Save"
    android:id="@+id/save"
    android:onClick="save"
    android:layout_gravity="center_horizontal|bottom" />

</FrameLayout>

и в деятельности:

LinearLayout layout= (LinearLayout )findViewById(R.id.cameraContainer);
layout.addView(mPreview);
Другие вопросы по тегам