gpt4 book ai didi

java - Android 应用程序返回 NULL

转载 作者:行者123 更新时间:2023-12-01 15:34:35 25 4
gpt4 key购买 nike

在开始之前,我要说的是,过去两天我一直在寻找解决错误的方法,确实找到了一些对我不起作用的可用解决方案。最后我在这里发布我的代码:

关于代码:

我想编写一个 Java 应用程序来检查将音频管理器设置为 MODE_IN_CALL 的场景。

代码:

public class AudioBTActivity extends Activity implements OnClickListener{
/** Called when the activity is first created. */

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



Button Onbutton = (Button)this.findViewById(R.id.setOn);
Button offButton = (Button)this.findViewById(R.id.setOff);

// listen for the button being hit
Onbutton.setOnClickListener((OnClickListener) this) ;
offButton.setOnClickListener((OnClickListener) this);
}

public void onClick(View v) {
switch(v.getId()) {
case R.id.setOff:
sAudioActivity();
break;
case R.id.setOn :
AudioActivity();
}
Log.e("AudioActivity() failed",null);

}

public void AudioActivity() {
// TODO Auto-generated method stub
AudioManager audioMngr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
boolean isInCall = ((audioMngr.getMode() == AudioManager.MODE_IN_CALL));
if(! isInCall){
audioMngr.setMode(AudioManager.MODE_IN_CALL);
}
}

public void sAudioActivity() {
// TODO Auto-generated method stub
AudioManager audioMngr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
audioMngr.setMode(AudioManager.MODE_NORMAL);

和 xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.AudioBT"
android:versionCode="1"
android:versionName="1.0" >
<Button
android:id="@+id/setOn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ON"
android:onClick="onClick"
>

</Button>

<Button
android:id ="@+id/setOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OFF"
android:onClick="onClick"
>
</Button>
<Button
android:id="@+id/strBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
>
</Button>
<Button
android:id ="@+id/stpBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
>
</Button>


<uses-sdk android:minSdkVersion="15" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".AudioBTActivity"
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>

错误:01-31 14:36:53.424:E/AndroidRuntime(1309):java.lang.RuntimeException:无法启动 Activity ComponentInfo {com.AudioBT/com.AudioBT.AudioBTActivity}:java.lang.NullPointerException

到目前为止,我无法找到崩溃的原因。这里有一个类似的线程,但是我无法在我的情况下捕获异常 findViewById() returns null for custom component in layout XML, not for other components

我一直在使用最新版本的 Android SDK 4.0.3 和 Esclipse IDE for Java

如有任何帮助,我们将不胜感激,

谢谢

最佳答案

将所有这些代码放入 res/main.xml

   <Button
android:id="@+id/setOn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ON"
android:onClick="onClick"
>

</Button>

<Button
android:id ="@+id/setOff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OFF"
android:onClick="onClick"
>
</Button>
<Button
android:id="@+id/strBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
>
</Button>
<Button
android:id ="@+id/stpBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
>
</Button>

关于java - Android 应用程序返回 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9087100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com