所以我有一个像这样的MainActivity。
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.setContentView(R.layout.splash_layout);
ImageView imageView = (ImageView) findViewById(R.id.logo);
imageView.setImageResource(R.drawable.logo_p);
Handler handler = new Handler();
handler.postDelayed(new Runnable(){
@Override
public void run() {
jump();
}
}, 3000);
}
使用这样的布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:paddingTop="5sp"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingBottom="5sp"
/>
当我在Samsung Galaxy S2(Android 4.0.3)上调试时,会出现图像并成功调用跳转功能。当我在三星Galaxy S3(Android 4.1.2)上调试它时,LogCat会抛出此错误。
05-18 19:51:05.832: E/(20438): <s3dReadConfigFile:75>: Can't open file for reading
永远不会调用跳转功能,应用程序完全崩溃。我不知道这个错误是什么以及如何解决它。这个问题也被问到here但在撰写本文时没有答案。
只要未将imageview设置为源,应用程序就会起作用。如果我注释掉这一行,我仍然会得到错误,但调用了跳转函数。如果我根本不调用setContentView(),则不会出现错误。