Back to project page android-rackspacecloud.
The source code is released under:
MIT License
If you think the Android project android-rackspacecloud listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.rackspacecloud.android; /* w ww . jav a 2s .com*/ import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class ErrorDetailsActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.errordetails); setUpText(savedInstanceState); } private void setUpText(Bundle text){ String request = (String) this.getIntent().getExtras().get("request"); String response = (String) this.getIntent().getExtras().get("response"); ((TextView) findViewById(R.id.request_text)).setText(request); ((TextView) findViewById(R.id.response_text)).setText(response); } }