gpt4 book ai didi

java - list 中的类集成 : application stopped

转载 作者:行者123 更新时间:2023-12-02 02:34:14 26 4
gpt4 key购买 nike

我的manifest.xml 引发“.RoleActivity”错误。但是如果我用其他人替换我的“.roleActivity”进行检查,它们都没有问题。这是我的manifest.xml

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zobaed.androidlogin" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".RoleActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".DoctorLoginActivity">
</activity>
<activity android:name=".PatientLoginActivity">
</activity>

</application>
</manifest>

这是我的角色 Activity 。尝试在这里编写 switch case。

public class RoleActivity extends AppCompatActivity {

private Button btnPatient;
private Button btnDoctor;
private Button btnGuest;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.log_in_role);


btnPatient = (Button) findViewById(R.id.btpatient);
btnDoctor = (Button) findViewById(R.id.btdoctor);
btnGuest = (Button) findViewById(R.id.btguest);

btnPatient.setOnClickListener((View.OnClickListener) this);
btnDoctor.setOnClickListener((View.OnClickListener) this);
btnGuest.setOnClickListener((View.OnClickListener) this);
}

public void onClick(View v) {
switch (v.getId()) {
case R.id.btdoctor: {

Intent i = new Intent(getApplicationContext(), DoctorLoginActivity.class);
startActivity(i);
break;
}

case R.id.btpatient: {

Intent i = new Intent(getApplicationContext(), PatientLoginActivity.class);
startActivity(i);
break;
}

}
}

}

最佳答案

在RoleActivity类中实现onClickListner并将代码更改为

btnPatient.setOnClickListener( this);
btnDoctor.setOnClickListener(this);
btnGuest.setOnClickListener(this);

关于java - list 中的类集成 : application stopped,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46638390/

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