我希望edittext"text"能够反映在textview上,在Edittext离开事件之后,我可以尝试使用这个可以任何人告诉我什么是错的或者它在android中不可能?
我尝试了所有可能的事件
objNextbet=getNextBets();
Button btnbetNow =(Button)findViewById(R.id.btnBetNow);
try
{
SimpleExpandableListAdapter expListAdapter =
new SimpleExpandableListAdapter(
this,
createBetGroupList("next"), // groupData describes the first-level entries
R.layout.group_row, // Layout for the first-level entries
new String[] { "BetGroup" }, // Key in the groupData maps to display
new int[] { R.id.childname }, // Data under "colorName" key goes into this TextView
createBetChildList("next") , // childData describes second-level entries
R.layout.child_row, // Layout for second-level entries
new String[] { "betText","betRate","betID" }, // Keys in childData maps to display …Run Code Online (Sandbox Code Playgroud)