我已经开发了一个简单的Android应用程序,可以在互联网上的网址上加载图像并将其显示在用户的图像视图中(即全部),当我将所有代码放入onCreate函数时,应用程序无法正常工作在onStart中相同的代码应用程序工作并显示图像.... 我之前有另外一个问题:当我想在应用程序启动时更改textview文本属性(使用onCreate函数)我失败并且应用程序崩溃但是在onStart中使用相同的代码解决了问题,请帮助我我卡住了在这个该死的问题。 你能解释为什么会这样吗? 我的代码
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
ImageView img=(ImageView) findViewById(R.id.imageView1);
try {
URL url=new URL("http://player.arsenal.com/site_media/images /uploaded/videothumbs/001702f8095b04cfc885ff1a79375312/552x310/idx-10.jpg");
HttpGet httpRequest=null;
httpRequest= new HttpGet(url.toURI());
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = (HttpResponse) httpclient
.execute(httpRequest);
HttpEntity entity = response.getEntity();
BufferedHttpEntity b_entity = new BufferedHttpEntity(entity);
InputStream input = b_entity.getContent();
Bitmap bitmap = BitmapFactory.decodeStream(input);
img.setImageBitmap(bitmap);
} catch (Exception ex) {
}
}
@Override
protected void onStart() {
super.onStart();
String msg = null;
Log.d(msg, "The onStart() event");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}
}
答案 0 :(得分:0)
通过一些猜测,onCreate()
和onStart()
之间的差异:您的imageView1
不在活动布局中,而是在片段布局中。待处理的片段事务在super.onStart()
中执行,片段将附加到活动。之后,在活动视图层次结构上调用findViewById()
实际上找到了视图,并且不像onCreate()
阶段那样返回null。
除此之外,你在主线程上进行网络操作(你不应该),你应该受到NetworkOnMainThreadException
的惩罚,除非你用StrictMode
或{{1}来压制它低于11。
您还在吞咽任何targetSdkVersion
,这会阻止您了解Exception
区块中的任何问题。至少考虑记录异常堆栈跟踪。