2014-07-24 63 views
0

我想MainAdapter.java字符串變量的值傳遞給MainActivity.java無法適配值傳遞到活動

MainAdapter.java有一個字符串值,如:

static String strValue; 

strValue = editText.getText().toString(); 
Log.d("strValue:", strValue); // it contains value 

現在我想把strValue中以textResultMainActivity.java,像這樣:

textResult.setText(MainAdapter.strValue); //getting null pointer exception 

所以請讓我知道,如何將一個簡單的字符串值從Adapter類傳遞給Activity類

+5

'textResult'是空 – Raghunandan

+0

後一些代碼,您的logcat .... –

+0

嘗試定義您的MainActivity適配器並直接在adder中設置textview。 –

回答

0
public class MyAdapter extends BaseAdapter { 

public MyAdapter(){ 

} 

public String getMyString(){ 
return "the string is:"; 
} 
} 

內MyActivity你寫

adapter.getMyString(); 

所以這將是textResult.setText(adapter.getMyString());

相關問題