大家好,提前感谢您的任何回答。
我遇到的问题是我的第二个活动“Calander.class”没有从我的主要活动“ShiftSelection”中调用。我一般是编码和 android 新手,我只是想学习基础知识,但这个问题真的难倒我。我已将 Activity 添加到 Manifest 文件中,并认为我正确调用了 Intent,但是在运行我的 Button 的应用程序 onClick 时,它应该调用第二个 Activity 并没有做任何事情。
我究竟做错了什么?非常抱歉,如果这是一个简单的答案,但我向您保证,我已经尝试了很多小时,但尝试了不同的事情,但都失败了。
我的第一个活动和清单文件的代码如下。
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
public class ShiftSelection extends Activity{
Button openButton;
RadioGroup shiftSelection;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.shiftselection);
shiftSelection = new RadioGroup(this);
RadioButton shiftPattern1 = new RadioButton(this); //shiftPattern1 = 4 shift
shiftPattern1.setText("4 shift");
shiftPattern1.setChecked(true);
shiftPattern1.setId(01);
RadioButton shiftPattern2 = new RadioButton(this); //shiftPattern2 = 6 shift
shiftPattern2.setText("4 shift");
shiftPattern2.setId(02);
shiftSelection.addView(shiftPattern1);
shiftSelection.addView(shiftPattern2);
Button openButton = new Button(this);
openButton.setText("open");
openButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplicationContext(), Calander.class);
int genderID = shiftSelection.getCheckedRadioButtonId();
switch(genderID){
case 01:
intent.putExtra("shiftPattern", "1");
break;
case 02:
intent.putExtra("shiftPattern", "2");
break;
}
startActivity(intent);
}
});
}
}
和清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.examples"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ShiftSelection"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Calander">
</activity>
</application>
</manifest>
感谢您的任何帮助。