gpt4 book ai didi

java - 无法让消息 View 显示在 Android Eclipse 应用程序中

转载 作者:行者123 更新时间:2023-12-01 15:06:18 41 4
gpt4 key购买 nike

我从我找到的教程中设置了一个 Activity 类(class)。 Activity 类只是打开一个新屏幕并显示来自 mainActivity 上文本框的消息。 APP调用服务器上的php文件,返回JSON数据。当我测试它时,这一面在浏览器中运行良好。

现在是 Android 问题。我试图让该数据显示在 messageActivity 类中。我尝试简单地使用下面的代码来执行此操作,但是 Eclipse 标记了 Intent 行,表示“构造函数 Intent(Connect, Class) 未定义”

我的问题是,触发 Activity 以便显示 JSON 数据的正确方法是什么,其次,如果您查看 quaryDB 方法,如何从响应中将 JSON 数据获取到 messageActivity?

主要 Activity :

public class MainActivity extends Activity {
RadioButton radioButton1, radioButton2, radioButton3;

public final static String EXTRA_MESSAGE = "com.example.xxxxxxx.MESSAGE";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


radioButton1 = (RadioButton)findViewById(R.id.radioButton1);
radioButton2 = (RadioButton)findViewById(R.id.radioButton2);
radioButton3 = (RadioButton)findViewById(R.id.radioButton3);
radioButton1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
if (radioButton1.isChecked()){
radioButton2.setChecked(false);
radioButton3.setChecked(false);
}

}
});

radioButton2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
if (radioButton2.isChecked()){
radioButton3.setChecked(false);
radioButton1.setChecked(false);
}

}
});

radioButton3.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
if (radioButton3.isChecked()){
radioButton2.setChecked(false);
radioButton1.setChecked(false);
}

}
});



Spinner spinner = (Spinner) findViewById(R.id.spinner);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.PracticeTypes, android.R.layout.simple_spinner_item);
// Specify the layout to use when the list of choices appears
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Apply the adapter to the spinner
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
Connect c = new Connect();
c.quaryDB(this);

}


public class MyOnItemSelectedListener implements OnItemSelectedListener{
public void onItemSelected(AdapterView<?> parent,
View view, int pos, long id){
Toast.makeText(parent.getContext(), "The Selected Practice is " + parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();
}
public void onNothingSelected(AdapterView parent){

}
}
public void sendMessage(View view){
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);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;

}

};

显示消息 Activity :

 public class DisplayMessageActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

TextView textView= new TextView(this);
textView.setTextSize(40);
textView.setText(message);

setContentView(textView);
}
}

然后是获取 JSON 数据响应的连接类:

 public class Connect{

void Connect(){

}

public void quaryDB(Context context){

Connection conn=null;
try{
HttpClient client = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://10.0.0.6/DevServer/getAllByZip.php");
HttpResponse response = client.execute(httppost);
HttpEntity entity = response.getEntity();
String succMsg = "Successful Execute.\n";

Toast.makeText(context, succMsg, Toast.LENGTH_LONG).show();
}
catch (Exception e){
String errMsg ="Cannot connect to database server.\n"+e.toString();
Toast.makeText(context, errMsg, Toast.LENGTH_LONG).show();
}
finally{
if (conn !=null){
try{
conn.close();
}
catch (Exception e){
}
}
}
}
public void sendMessage(View view){
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);
}
}

sendMessage 方法在 Connect 类中感觉不太好,但我不知道如何正确地将 JSON 数据发送到 DisplayMessageActivity。在我弄清楚这一部分之后,我将能够开始解析数据并做需要做的事情。

最佳答案

首先我会解释一下这个问题:

Intent 的构造函数期望 Activity 上下文作为第一个参数。当您在扩展 Activity 的类中使用它时,您可以使用 this 作为第一个参数,即 Activity 本身。

当您在类Connect(不扩展Activity)中使用它时,使用this作为第一个参数将恢复为类Connect 没有上下文。

解决方案:

如果您从 Activity 中调用 sendMessage,则可以执行以下操作:

在 Activity 中

sendMessage(this, myview);

在类Connect

public void sendMessage(Context context, View view){  
Intent intent= new Intent(context, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}

如果您没有从 Activity 中调用它,请将上下文传递给类构造函数:

public class Connect{      

Context context;
void Connect(Context context){
this.context = context;
}

现在您可以在 sendMessage()

中使用上下文

祝你好运

关于java - 无法让消息 View 显示在 Android Eclipse 应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12902571/

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