2

由 Emil thx 解决,我主要关注

package com.example.surfacetest;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.BitmapFactory;
import android.view.Window;
import android.view.WindowManager;
import android.widget.ImageView;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //requestWindowFeature(Window.FEATURE_NO_TITLE);
        //this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,     WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.activity_main);
        ImageView img = (ImageView) findViewById(R.drawable.hero_frame);
        img.setImageBitmap(BitmapFactory.decodeResource(this.getResources(),R.drawable.chen_gong));

    }

}
`

在我有的 xml 文件中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />
<ImageView
    android:id="@+id/hero1"
    android:maxWidth="100dp"
    android:maxHeight="100dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleType="centerInside"
    android:layout_marginLeft="5.33dp"
    />
<ImageView
    android:id="@+id/hero2"
    android:maxWidth="100dp"
    android:maxHeight="100dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleType="centerInside"
    android:layout_marginLeft="5.33dp"
    android:layout_toRightOf="@id/hero1"
    />

有什么我错过的吗,过去两天我一直在研究这个问题,但在互联网上找不到任何解决方案,或者我错过了。请帮忙。

4

2 回答 2

3

问题出在这一行:

    ImageView img = (ImageView) findViewById(R.drawable.hero_frame);

您需要传递要查找的 ImageView 的 ID,您目前可能正在获取一个NullPointerException,因为img找不到,请尝试以下操作:

    ImageView img = (ImageView) findViewById(R.id.hero1);
于 2012-10-08T01:06:22.577 回答
1

试试这个 ;

image.setImageResource(R.drawable.chen_gong);

或直接从 xml 布局通过将行添加到您的ImageView标签:

android:src="@drawable/chen_gong"
于 2012-10-07T23:58:15.487 回答