大家好我正在创建Android应用程序,它将处理填充非常长的txts到textViews(每个布局一个),所以我有帮助类实用程序和我的正常活动类。在该实用程序中,有一种显示记录的方法,该方法将在普通活动类中调用,该方法在实用程序类中是
...
//here we go
public static void ShowMessageBox(Context cont, String msg) {
Toast toast = Toast.makeText(cont, msg, Toast.LENGTH_SHORT) ;
// toast.setGravity(Gravity.CENTER, 0, 0);
toast.setGravity(Gravity.CENTER | Gravity.CENTER, 0, 0);
toast.show();
}
//end of the method`
`
现在我想要那个而不是填充吐司,在文本视图上显示帮助我如何执行此操作或如何创建将光标结果定向到textviews的方法
答案 0 :(得分:0)
基本上gabe sechan说过了。
删除toaststuff。 添加:
TextView tv = (TextView)((Activity)cont).findViewById(R.id.yourtextviewidfromxml);
tv.setText(msg);