2

私はAndroid開発に非常に慣れていません。私は Google の Android の「クラス」に従っていますが、Eclipse でこのコードのエラーを受け取ります。

package com.feistie.myfirstapp;

import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {

    public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Initialize member TextView so we can manipulate it later
        mTextView = (TextView) findViewById(R.id.text_message);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
            // For the main activity, make sure the app icon in the action bar
            //does not behave as a buutton
            ActionBar actionBar = getActionBar();
            actionBar.setHomeButtonEnabled(false);
        }
    }

    @Override
    public void onDestroy() {
        super.onDestroy();  // Always call the superclass

        // Stop method tracing that the activity started during onCreate()
        android.os.Debug.stopMethodTracing();
    }

    @Override
    public void onPause() {
        super.onPause();  // Always call the superclass method first

        // Release the Camera because we don't need it when paused
        // and other activities might need to use it.
        if (mCamera != null) {
            mCamera.release();
            mCamera = null;
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    /** Called when the user clicks the Send button */
    public void sendMessage (View view) {
        // Do Something in response to button
        Intent intent = new Intent(this, DisplayMessageActivity.class);
        EditText editText = (EditText) findViewById(R.id.edit_message);
        String message = editText.getText().toString();
        intent.putExtra(EXTRA_MESSAGE, message);
        startActivity(intent);
    }
}

次の各行にエラーがあります。

if (mCamera != null) {
                mCamera.release();
                mCamera = null;
            }

1 行目と 3 行目のエラーは、「mCamera を変数に解決できません」と表示されます。2 行目のエラーは、「mCamera を解決できません」とだけ表示されます。

さらに情報が必要な場合は、お知らせください。

ありがとう!

4

1 に答える 1

2

mCamera参照する前に宣言する必要があります。

public class MainActivity extends Activity {
    Camera mCamera;

そして、おそらく onResume() で初期化する必要があります

@Override
protected void onResume() {
    super.onResume();
    mCamera = Camera.open()
}

マニフェストに適切なアクセス許可を追加したことを確認します。

<uses-permission android:name="android.permission.CAMERA" />

添加

Java で使用する前に、declare_every_ variable が必要です。どこで宣言しているのかわかりませんmTextView

public class MainActivity extends Activity {
    Camera mCamera;
    TextView mTextView;
于 2012-08-04T20:00:00.210 に答える