Android 应用程序在按下设置时关闭
Android app closes on settings pressed
我在学习 Android 时遇到了一些麻烦,我创建了一个应用程序,当我点击我的单元格中的 menu/settings 按钮时,它应该会打开 menu/settings phone, 而不是我的应用程序关闭了。
此外,当我单击应用程序中的唯一按钮并实际执行某些操作然后单击 menu/settings 按钮时,它不会关闭并显示 menu/settings.
知道为什么会这样吗?
简历中;
- 打开应用程序。
- 点击 menu/settings 按钮。
- 我的应用关闭了。
- 打开应用程序。
- 打开我手机里的摄像头 phone(点击一个按钮打开它
上)。
- 点击 menu/settings 按钮。
- 我的应用程序没有关闭。
- 显示 menu/settings 个选项。
- 关闭我手机中的摄像头 phone(点击一个按钮将其打开
关闭)。
- 点击 menu/settings 按钮。
- 我的应用关闭了。
希望任何人都可以帮助我解决这个问题或提供某种指导或提示或我需要阅读什么。
稍后。
附言。这是代码;
MainActivity.java
package com.example.test;
import android.app.Activity;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Camera camera = null;
Parameters parameters;
Button FlashLightControl;
boolean isOn = true;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Creamos un boton con el texto adecuado
FlashLightControl = (Button)findViewById(R.id.btOnOff);
FlashLightControl.setText("ENCENDER LED CAMARA");
}
/**
* Control LED Camera.
* Esta funcion se ejecuta al clickar el boton que hemos incluido
* @param arg0
*/
public void onClick(View arg0) {
try{
// Al pulsar, si el Led estaba encendido se apaga y viceversa
if(camera == null){
camera = Camera.open();
parameters = camera.getParameters();
parameters.setFlashMode(Parameters.FLASH_MODE_TORCH);
camera.setParameters(parameters);
FlashLightControl.setText(R.string.btOff);
}else{
parameters.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(parameters);
camera.release();
camera = null;
FlashLightControl.setText(R.string.btOn);
}
}catch(Exception e){
//Control errores
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
System.out.println("Se presiono el boton: " + keyCode);
Log.e("--", "-----");
if (camera == null){
finish();
}else{
if (keyCode == KeyEvent.KEYCODE_BACK) {
moveTaskToBack(true);
}
}
return super.onKeyDown(keyCode, event);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btOnOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/encender"
android:onClick="onClick" />
</RelativeLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
更新:
这是打开应用程序并打开 LED 时目录打印的内容;
01-07 19:03:40.671: D/dalvikvm(5085): GC_CONCURRENT freed 397K, 8% free 6686K/7239K, paused 4ms+5ms
01-07 19:03:43.832: I/System.out(5085): Se presiono el boton: 82
01-07 19:03:43.832: E/--(5085): -----
boton: 82是设置按钮,应用不会关闭。
这就是按下设置按钮且 LED 未亮起时发生的情况;
01-07 19:06:37.334: I/System.out(5085): Se presiono el boton: 82
01-07 19:06:37.334: E/--(5085): -----
01-07 19:06:37.391: D/OpenGLRenderer(5085): Flushing caches (mode 0)
01-07 19:06:37.411: D/OpenGLRenderer(5085): Flushing caches (mode 1)
不知道这有什么帮助,但希望它有用。
您的代码完全符合您的描述。要停止关闭您的应用,请将其注释掉:
if (camera == null){
//finish();
}
我在学习 Android 时遇到了一些麻烦,我创建了一个应用程序,当我点击我的单元格中的 menu/settings 按钮时,它应该会打开 menu/settings phone, 而不是我的应用程序关闭了。
此外,当我单击应用程序中的唯一按钮并实际执行某些操作然后单击 menu/settings 按钮时,它不会关闭并显示 menu/settings.
知道为什么会这样吗?
简历中;
- 打开应用程序。
- 点击 menu/settings 按钮。
- 我的应用关闭了。
- 打开应用程序。
- 打开我手机里的摄像头 phone(点击一个按钮打开它 上)。
- 点击 menu/settings 按钮。
- 我的应用程序没有关闭。
- 显示 menu/settings 个选项。
- 关闭我手机中的摄像头 phone(点击一个按钮将其打开 关闭)。
- 点击 menu/settings 按钮。
- 我的应用关闭了。
希望任何人都可以帮助我解决这个问题或提供某种指导或提示或我需要阅读什么。
稍后。
附言。这是代码;
MainActivity.java
package com.example.test;
import android.app.Activity;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Camera camera = null;
Parameters parameters;
Button FlashLightControl;
boolean isOn = true;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Creamos un boton con el texto adecuado
FlashLightControl = (Button)findViewById(R.id.btOnOff);
FlashLightControl.setText("ENCENDER LED CAMARA");
}
/**
* Control LED Camera.
* Esta funcion se ejecuta al clickar el boton que hemos incluido
* @param arg0
*/
public void onClick(View arg0) {
try{
// Al pulsar, si el Led estaba encendido se apaga y viceversa
if(camera == null){
camera = Camera.open();
parameters = camera.getParameters();
parameters.setFlashMode(Parameters.FLASH_MODE_TORCH);
camera.setParameters(parameters);
FlashLightControl.setText(R.string.btOff);
}else{
parameters.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(parameters);
camera.release();
camera = null;
FlashLightControl.setText(R.string.btOn);
}
}catch(Exception e){
//Control errores
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
System.out.println("Se presiono el boton: " + keyCode);
Log.e("--", "-----");
if (camera == null){
finish();
}else{
if (keyCode == KeyEvent.KEYCODE_BACK) {
moveTaskToBack(true);
}
}
return super.onKeyDown(keyCode, event);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btOnOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/encender"
android:onClick="onClick" />
</RelativeLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
更新:
这是打开应用程序并打开 LED 时目录打印的内容;
01-07 19:03:40.671: D/dalvikvm(5085): GC_CONCURRENT freed 397K, 8% free 6686K/7239K, paused 4ms+5ms
01-07 19:03:43.832: I/System.out(5085): Se presiono el boton: 82
01-07 19:03:43.832: E/--(5085): -----
boton: 82是设置按钮,应用不会关闭。
这就是按下设置按钮且 LED 未亮起时发生的情况;
01-07 19:06:37.334: I/System.out(5085): Se presiono el boton: 82
01-07 19:06:37.334: E/--(5085): -----
01-07 19:06:37.391: D/OpenGLRenderer(5085): Flushing caches (mode 0)
01-07 19:06:37.411: D/OpenGLRenderer(5085): Flushing caches (mode 1)
不知道这有什么帮助,但希望它有用。
您的代码完全符合您的描述。要停止关闭您的应用,请将其注释掉:
if (camera == null){
//finish();
}