当我使用TextView
运行基本的Android应用程序时,它会显示文本,但是如果我使用ImageView
运行该代码,则我的应用程序也无法打开
例如:
MainActivity.java代码:
package com.sef.hero;
import android.content.Intent;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
// private static int SPLASH_TIME_OUT=4000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// new Handler().postDelayed(new Runnable() {
// @Override
// public void run() {
// Intent homeIntent=new Intent(MainActivity.this,HomeActivity.class);
// startActivity(homeIntent);
// finish();
// }
// },SPLASH_TIME_OUT);
}
}
activity_main.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.sef.hero.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello world"/>
</RelativeLayout>
当我运行此代码时,它正在运行并在模拟器上关闭我的应用程序。它没有显示任何关闭的图像,也没有打开我的应用程序:
MainActivity.java代码:
package com.sef.hero;
import android.content.Intent;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
// private static int SPLASH_TIME_OUT=4000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// new Handler().postDelayed(new Runnable() {
// @Override
// public void run() {
// Intent homeIntent=new Intent(MainActivity.this,HomeActivity.class);
// startActivity(homeIntent);
// finish();
// }
// },SPLASH_TIME_OUT);
}
}
activity_main.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.sef.hero.MainActivity">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:src="@drawable/my_image" />
</RelativeLayout>
答案 0 :(得分:0)
您似乎为ImageView
使用了矢量可绘制对象,
如果是,则考虑使用AppCompatImageView
并使用属性 app:srcCompat="[your image drawable here]"
代替常规的src
标签。