Android - два setViewContent в одном действии - один в XML, один в Java - PullRequest
0 голосов
/ 03 декабря 2011

Я недавно создал приложение, которое показывает вам предварительный просмотр камеры на экране.

package com.street.lamp;

import android.app.Activity;
import android.content.Context;
import android.hardware.Camera;
import android.os.Bundle;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.Window;
import android.view.WindowManager;

import java.io.IOException;

public class StartingPoint extends Activity {
private Preview mPreview;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    System.out.println("hoera");
    // Hide the window title.
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
            setContentView(R.layout.main);

    // Create our Preview view and set it as the content of our activity.
    try{
        mPreview = new Preview(this);
        setContentView(mPreview);
        System.out.println("hoera");
        }
    catch(RuntimeException e){
        System.out.println(e.getMessage());
    }
}

}

// ----------------------------------------------------------------------

class Preview extends SurfaceView implements SurfaceHolder.Callback {
SurfaceHolder mHolder;
Camera mCamera;

Preview(Context context) {
    super(context);

    // Install a SurfaceHolder.Callback so we get notified when the
    // underlying surface is created and destroyed.
    mHolder = getHolder();
    mHolder.addCallback(this);
    mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
}

public void surfaceCreated(SurfaceHolder holder) {
    // The Surface has been created, acquire the camera and tell it where
    // to draw.
    mCamera = Camera.open();
    try {
       mCamera.setPreviewDisplay(holder);
    } catch (IOException exception) {
        mCamera.release();
        mCamera = null;
        // TODO: add more exception handling logic here
    }
}

public void surfaceDestroyed(SurfaceHolder holder) {
    // Surface will be destroyed when we return, so stop the preview.
    // Because the CameraDevice object is not a shared resource, it's very
    // important to release it when the activity is paused.
    mCamera.stopPreview();
    mCamera.release();
    mCamera = null;
}

public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
    // Now that the size is known, set up the camera parameters and begin
    // the preview.
    Camera.Parameters parameters = mCamera.getParameters();
    parameters.setPreviewSize(w, h);
    mCamera.setParameters(parameters);
    mCamera.startPreview();
}

}

Над этим мой код основного экрана, и, как вы можете видеть, я дважды установил setContentView.Теперь я знаю, что при установке этого параметра дважды будет отображаться только самое последнее, но я не нашел другого решения.это мой файл main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1">
<EditText android:layout_width="match_parent" android:text="Hello World" android:textColor="@android:color/white" android:focusable="true" android:id="@+id/editText1" android:layout_height="wrap_content" android:layout_weight="0.18" android:background="@android:color/transparent">
    <requestFocus></requestFocus>
</EditText>
</LinearLayout>

Как включить оба просмотра контента?

Спасибо!

1 Ответ

1 голос
/ 03 декабря 2011

setContentView переопределить весь контент для вашей текущей деятельности. Если вам нужен макет, который включает в себя некоторые динамические компоненты (например, предварительный просмотр), тогда предварительный просмотр должен быть частью основного макета и добавляться во время выполнения в определенный вами определенный компонент.

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

....
setContentView(R.layout.main);
....
final ViewGroup locationForMyPreview = (ViewGroup) findViewById(R.id.preview_location);
mPreview = new Preview(this);
locationForMyPreview.addView(mPreview);
....

Этот R.id.preview_location ViewGroup может быть определен как любой тип макета в вашем основном макете (RelativeLayout, LinearLayout, как угодно).

Ваш main.xml становится чем-то вроде:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="1">
    <EditText android:layout_width="match_parent" android:text="Hello World"     
        android:textColor="@android:color/white" android:focusable="true"    
        android:id="@+id/editText1" android:layout_height="wrap_content" 
        android:layout_weight="0.18" android:background="@android:color/transparent">
    <requestFocus></requestFocus>
    </EditText>
    <LinearLayout android:id="@+id/preview_location"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>
...