0

早上好。我想在 TextView 中发送获取请求并显示响应。

public class MyHttpClient {

private static final String BASE_URL = "http://pgu.com";

private static AsyncHttpClient client = new AsyncHttpClient();

 public static void get(String url, RequestParams params, AsyncHttpResponseHandler responseHandler) {
      client.get(getAbsoluteUrl(url), params, responseHandler);
 }   
 private static String getAbsoluteUrl(String relativeUrl) {
      return BASE_URL + relativeUrl;
  }}

我从这门课上打电话

public class MyHttpClientUsage {

Handler h;

public MyHttpClientUsage(Handler h){
    this.h = h;
}

public void getInfoAbout() throws HttpException{

    RequestParams params = new RequestParams();
    params.put("a", "Static");
    params.put("content", "47");

    MyHttpClient.get("", params, new AsyncHttpResponseHandler(){
         @Override
            public void onSuccess(String response) {
                  System.out.println(response);
                              //Simplify sending int to TextView
                  MyHttpClientUsage.this.h.sendEmptyMessage(678); 
                         }
    });
}}

在活动中,我有一个处理程序来获取消息并设置 TextView

public class MainActivity extends Activity {

Handler h;
TextView largeText;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    largeText = (TextView) findViewById(R.id.textView1);

    h = new Handler(){

        public void handleMessage(android.os.Message msg){
            largeText.setText(msg.what);
        }

    };

    MyHttpClientUsage connect = new MyHttpClientUsage(h);
    try {
        connect.getInfoAbout();
    } catch (HttpException e) {
        e.printStackTrace();
    }

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}}

在 LogCat 我有这个警告

02-06 14:30:51.783: W/dalvikvm(546): threadid=1: thread exiting with uncaught exception (group=0x409961f8)

和错误

02-06 14:30:51.833: E/AndroidRuntime(546): android.content.res.Resources$NotFoundException:   String resource ID #0x2a6
4

1 回答 1

1

如您在此处看到的 消息。什么是 int。您将 int 传递给作为 参数的setText方法。将您的代码更改为:TextViewCharSequence

largeText.setText(String.valueOf(msg.what));

或者

largeText.setText(msg.what.toString());
于 2013-02-06T15:49:20.027 回答