0

大家好,我正在创建 android 应用程序,该应用程序将处理向 textViews 填充很长的 txt(每个布局一个),所以我有辅助类实用程序和我的正常活动类。在实用程序中有一个显示记录的方法,该方法将在正常活动类中调用,实用程序类中的此方法是

... 
//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`

`

现在我想要那个而不是填充在吐司上,显示在文本视图上帮助我如何做到这一点或如何创建一种将光标结果定向到文本视图的方法

4

1 回答 1

0

基本上 gabe sechan 已经说过了。

删除吐司。添加:

TextView tv = (TextView)((Activity)cont).findViewById(R.id.yourtextviewidfromxml);
tv.setText(msg);
于 2013-04-25T21:00:05.180 回答